haxurs199

arsenal mobile hitbox

Apr 18th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. local lplr = game:FindFirstChildWhichIsA("Players").LocalPlayer
  2. while wait() do
  3. for i,v in pairs(game:FindFirstChildWhichIsA("Players"):GetChildren()) do
  4. if v ~= lplr and v.TeamColor ~= lplr.TeamColor and v.Character then
  5. e = v.Character:FindFirstChild("Humanoid")
  6. if not e then
  7. repeat wait() until v.Character:FindFirstChild("Humanoid")
  8. end
  9. if v.Character.Humanoid.Health ~= 0 then
  10. dudechar = v.Character
  11. dudetorso = dudechar.LowerTorso
  12. dudetorso.Transparency = 1
  13. dudetorso.Anchored = false
  14. dudetorso.CanCollide = false
  15. dudetorso.Massless = true
  16. dudetorso.Size = Vector3.new(5,6,5)
  17. end
  18. elseif v ~= lplr and v.TeamColor == lplr.TeamColor and v.Character then
  19. e = v.Character:FindFirstChild("Humanoid")
  20. if not e then
  21. repeat wait() until v.Character:FindFirstChild("Humanoid")
  22. end
  23. if v.Character.Humanoid.Health ~= 0 then
  24. dudechar = v.Character
  25. dudetorso = dudechar.LowerTorso
  26. dudetorso.Transparency = 1
  27. dudetorso.Anchored = false
  28. dudetorso.CanCollide = false
  29. dudetorso.Massless = true
  30. dudetorso.Size = Vector3.new(2,3,2)
  31. end
  32. end
  33. end
  34. end
Add Comment
Please, Sign In to add comment