Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Change to colour of a players torso

Asked by 10 years ago

How do you change the colour of a players torso depending on what team he's or she's on such as green team Gets you a green torso and blue blue torso so on

1 answer

Log in to vote
2
Answered by 10 years ago
Game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(char)
char:WaitForChild("Torso").BrickColor=player.TeamColor;
end)
end)
Ad

Answer this question