Advertisement
mushrooman

Roblox Hitbox Erasure -LocalPlayer/LUA-

Jun 22nd, 2019
635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. _G.HeadSize = 0
  2. _G.Disabled = true
  3.  
  4. game:GetService('RunService').RenderStepped:connect(function()
  5. if _G.Disabled then
  6. for i,v in next, game:GetService('LocalPlayer'):GetLocalPlayer() do
  7. if v.Name ~= game:GetService('LocalPlayer').LocalPlayer.Name then
  8. pcall(function()
  9. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  10. v.Character.HumanoidRootPart.Transparency = 0.6
  11. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Grey")
  12. v.Character.HumanoidRootPart.Material = "Metal"
  13. v.Character.HumanoidRootPart.CanCollide = false
  14. end)
  15. end
  16. end
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement