So I have a couple of teams, Developers, Fans & Contributors
I have a list of people who I want to put on a whitelist for certain teams. Like "Player1" on the Developers team and everybody who is not on a whitelist, gets put on Fans; technically fans is auto-assignable so do I keep it auto-assignable or not?
1 | game.Players.PlayerAdded:Connect( function () |
2 | for _,player in pairs (game.Players:GetChildren()) do |
3 | if player.Name = "PutTheSpecalPlayersNameHere" or "AnotherOne" or "AnotherOne" then |
4 | player.TeamColor = BrickColor.new( "Cyan" ) --instead of cyan put the color of the developers team it's one of it's properties |
5 | else |
6 | player.TeamColor = BrickColor.new( "Cyan" ) --instead of cyan put the color of fans |
7 |
8 | --Put this in a server script by the way |