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

Assign only one player to a certain team?

Asked by 4 years ago

So I have a script that would randomly assign players to teams:

01local team1 = game.Teams.Yellow
02local team2 = 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 = team1
09        elseif team == 2 then
10            player.team = team2
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?

1 answer

Log in to vote
1
Answered by 4 years ago

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:

1local others = Players:GetPlayers()
2local single = table.remove(others, math.random(1, #others))
Ad

Answer this question