Advertisement
BINO2002

Untitled

Jan 20th, 2019
23,839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. game:GetService("RunService").RenderStepped:connect(function()
  2. for i,v in pairs(game.Players:GetChildren()) do
  3. if v and v.Character ~= nil and v ~= game.Players.LocalPlayer and v.TeamColor ~= game.Players.LocalPlayer.TeamColor then
  4. v.Character.HumanoidRootPart.Size = Vector3.new(40,40,40)
  5. v.Character.HumanoidRootPart.Material = "Neon"
  6. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  7. v.Character.HumanoidRootPart.Transparency = 0.7
  8. end
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement