Advertisement
Faqz

AspectSilentAim

Jul 30th, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 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.
  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