Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 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(28,28,28)
  8. b.Material = "Neon"
  9. b.BrickColor = BrickColor.new("Really blue")
  10. b.Transparency = 0.7
  11. end
  12. end
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement