Advertisement
RealDOGGODEVELOPER

Hitbox Q-Clash

Mar 22nd, 2019
2,911
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. -- Made by Synapse & DoggoBot --
  2. _G.HeadSize = 13 -- Change the 13 how big the hit box
  3. _G.Disabled = true
  4.  
  5. game:GetService('RunService').RenderStepped:connect(function()
  6. if _G.Disabled then
  7. for i,v in next, game:GetService('Players'):GetPlayers() do
  8. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  9. pcall(function()
  10. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  11. v.Character.HumanoidRootPart.Transparency = 10 -- Change the 10 to 0 to see teh hit box
  12. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("White")
  13. v.Character.HumanoidRootPart.Material = "plastic"
  14. v.Character.HumanoidRootPart.CanCollide = false
  15. end)
  16. end
  17. end
  18. end
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement