JacobRoblox

Untitled

Jun 7th, 2020
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3. local bigboys = {}
  4. local size = 5
  5. local bighead = true -- This changes if you want the head hitbox or not (If you record arsenal gameplay set the size to 3 because the head hitbox is invisible)
  6.  
  7. game:GetService("RunService").RenderStepped:connect(function()
  8. for i,v in pairs(Players:GetPlayers()) do
  9. bigboys[i] = v
  10. end
  11.  
  12. for i,v in pairs(bigboys) do
  13. if v.Character ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil then
  14. if bighead ~= true then
  15. v.Character.LowerTorso.Size = Vector3.new(size,size,size)
  16. v.Character.HumanoidRootPart.Size = Vector3.new(size,size,size)
  17. else
  18. v.Character.HeadHB.Size = Vector3.new(size,size,size)
  19. v.Character.HumanoidRootPart.Size = Vector3.new(size,size,size)
  20. end
  21. end
  22. end
  23. end)
Add Comment
Please, Sign In to add comment