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
Game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) char:WaitForChild("Torso").BrickColor=player.TeamColor; end) end)