Advertisement
AimbotMan2022

hitbox extender

Dec 17th, 2020
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. ____ _ _ ____
  2. | _ \ __ _ ___| |_ ___ __| | | __ ) _ _
  3. | |_) / _` / __| __/ _ \/ _` | | _ \| | | |
  4. | __/ (_| \__ \ || __/ (_| | | |_) | |_| |
  5. |_| \__,_|___/\__\___|\__,_| |____/ \__, |
  6. |___
  7. _ _ _ _
  8. ___| | __ _ _ _ ___| |_(_) ___| | __
  9. / __| |/ _` | | | / __| __| |/ __| |/ /
  10. | (__| | (_| | |_| \__ \ |_| | (__| < My Profile: https://pastebin.com/u/claystick
  11. \___|_|\__,_|\__, |___/\__|_|\___|_|\_\
  12. |___/
  13.  
  14. --Hitbox Extender
  15. --Change 20 to your desired size
  16. --Change the white to your desired color (I recommend white)
  17. _G.HeadSize = 20
  18. _G.Disabled = true
  19.  
  20. game:GetService('RunService').RenderStepped:connect(function()
  21. if _G.Disabled then
  22. for i,v in next, game:GetService('Players'):GetPlayers() do
  23. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  24. pcall(function()
  25. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  26. v.Character.HumanoidRootPart.Transparency = 0.7
  27. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really white")
  28. v.Character.HumanoidRootPart.Material = "Neon"
  29. v.Character.HumanoidRootPart.CanCollide = false
  30. end)
  31. end
  32. end
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement