Advertisement
Guest User

hitbox expander

a guest
Jan 21st, 2020
8,584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.64 KB | None | 0 0
  1. local Player = game:GetService("Players").LocalPlayer
  2. game:GetService("RunService").Stepped:connect(function()
  3. for i,v in pairs (game:GetService("Players"):GetChildren()) do
  4. if v.TeamColor ~= Player.TeamColor and v.Name ~= Player.Name then
  5. v.Character.HumanoidRootPart.Size = Vector3.new(5,7,5)
  6. v.Character.HumanoidRootPart.Material = "Neon"
  7. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really red")
  8. v.Character.HumanoidRootPart.Transparency = 0.17
  9. elseif v.TeamColor == Player.TeamColor and v.Name ~= Player.Name then
  10. v.Character.HumanoidRootPart.Size = Vector3.new(0,0,0)
  11. v.Character.HumanoidRootPart.Transparency = 1
  12. end
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement