So I have a script that would randomly assign players to teams:
01 | local team 1 = game.Teams.Yellow |
02 | local team 2 = game.Teams.Blue |
03 |
04 | for _, player in pairs (game.Players:GetPlayers()) do |
05 | math.randomseed(tick()) |
06 | local team = math.random( 1 , 2 ) |
07 | if team = = 1 then |
08 | player.Team = team 1 |
09 | elseif team = = 2 then |
10 | player.team = team 2 |
11 | end |
12 | end |
How would I change this script so that it assigns ONLY ONE player to a certain team and then assign the rest to the other team?
The easiest solution would be to assign everyone to the other teams, then select the person for the single team.
The complicated solution would be to create an array of valid players to be assigned teams, like:
1 | local others = Players:GetPlayers() |
2 | local single = table.remove(others, math.random( 1 , #others)) |