agentagony124

Hitbox

Mar 30th, 2022 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. local UIS = game:GetService("UserInputService")
  2. local Size = Vector3.new(5,5,5) --Change 2,2,2 to desired head size. Numbers represent (x,y,z).
  3.  
  4. coroutine.resume(coroutine.create(function()
  5. game:GetService("RunService").RenderStepped:Connect(function()
  6. for k,v in next, game:GetService('Players'):GetPlayers() do
  7. if v.Character:FindFirstChild('Head') then
  8. local Head = v.Character.Head
  9. Head.Size = Vector3.new(2,1,1)
  10. Head.Size = Size
  11. game.Players.LocalPlayer.Character.Head.Size = Vector3.new(2,1,1)
  12. end
  13. end
  14. end)
  15. end))
  16.  
Add Comment
Please, Sign In to add comment