Advertisement
XxNubSlayerxX

Arsenal Hitbox extender / bootleg silent aim (VERY OLD MIGHT NOT WORK)

Apr 10th, 2020 (edited)
84,433
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.17 KB | Gaming | 2 0
  1. --[[
  2. If you execute the hitboxes will be bigger and invisble if you have problems with seeing it then re-execute the script. I'm not sure if this still works, it may get you banned.
  3. ]]
  4.  
  5. function getplrsname()
  6. for i,v in pairs(game:GetChildren()) do
  7. if v.ClassName == "Players" then
  8. return v.Name
  9. end
  10. end
  11. end
  12. local players = getplrsname()
  13. local plr = game[players].LocalPlayer
  14. coroutine.resume(coroutine.create(function()
  15. while  wait(1) do
  16. coroutine.resume(coroutine.create(function()
  17. for _,v in pairs(game[players]:GetPlayers()) do
  18. if v.Name ~= plr.Name and v.Character then
  19. v.Character.RightUpperLeg.CanCollide = false
  20. v.Character.RightUpperLeg.Transparency = 10
  21. v.Character.RightUpperLeg.Size = Vector3.new(13,13,13)
  22.  
  23. v.Character.LeftUpperLeg.CanCollide = false
  24. v.Character.LeftUpperLeg.Transparency = 10
  25. v.Character.LeftUpperLeg.Size = Vector3.new(13,13,13)
  26.  
  27. v.Character.HeadHB.CanCollide = false
  28. v.Character.HeadHB.Transparency = 10
  29. v.Character.HeadHB.Size = Vector3.new(13,13,13)
  30.  
  31. v.Character.HumanoidRootPart.CanCollide = false
  32. v.Character.HumanoidRootPart.Transparency = 10
  33. v.Character.HumanoidRootPart.Size = Vector3.new(13,13,13)
  34.  
  35. end
  36. end
  37. end))
  38. end
  39. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement