Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. while wait(.2) do
  2. for i,v in pairs(game.Players:GetChildren()) do
  3. wait()
  4. if v and v.Character ~= nil and v ~= game.Players.LocalPlayer and v.TeamColor ~= game.Players.LocalPlayer.TeamColor then
  5. for a, b in pairs(v.Character:GetChildren()) do
  6. if b.Name == "HumanoidRootPart" then
  7. b.Size = Vector3.new(15,15,15)
  8. b.Material = "Plastic"
  9. b.BrickColor = BrickColor.new("Really blue")
  10. b.Transparency = 0.7 -- Change this to 0 to see the hitbox--
  11. b.Cancollide = true
  12. end
  13. end
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement