Charliezkie

Any Game HitBox Extender

Jul 3rd, 2019
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.41 KB | None | 0 0
  1. --===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===--
  2. --===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===--
  3. wait (2)
  4. _G.HeadSize = 20 --how big the headzide is i recoment 20 or 10 so it dont look like your hacking/exploiting
  5. _G.Disabled = true --dont change or will not work
  6.  
  7. game:GetService('RunService').RenderStepped:connect(function()
  8. if _G.Disabled then
  9. for i,v in next, game:GetService('Players'):GetPlayers() do
  10. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  11. pcall(function()
  12. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  13. v.Character.HumanoidRootPart.Transparency = .3  -- Change the 10 to 0 to see teh hit box
  14. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White")
  15. v.Character.HumanoidRootPart.Material = "plastic"
  16. v.Character.HumanoidRootPart.CanCollide = false
  17. end)
  18. end
  19. end
  20. end
  21. end)
  22. --===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===--
  23. --===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===--
  24. --===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===----===--
Add Comment
Please, Sign In to add comment