ADVERTISEMENTREMOVE ADS

Combat Warriors hitbox extender script

Combat Warriors
3 years ago
Script preview thumbnail
Script Preview
my
myusernameisbad

Description

Use this brand new Combat Warriors hitbox extender script to become the best at the game. To properly use this script, simply equip your weapon and hold "v" to make the hitbox go bigger. Make sure not to double-tap "v" because the script might break otherwise!

Features:

  • Hitbox extender
ADVERTISEMENTREMOVE ADS
24 Lines • 547 Bytes
Raw
--BROUGHT TO YOU BY RSCRIPTS.NET--
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
bind = "v" -- has to be lowercase
mouse.KeyDown:connect(function(key)
if key == bind then
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v:IsA("Tool") then
for i,v in pairs(v.Hitboxes.Hitbox:GetChildren()) do
if v.Name == "DmgPoint" then
v.Position = v.Position + Vector3.new(0, math.random(-2, 10), 0)
v.Visible = true
end
end
end
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS