I have six teams and the max players is six. how would I make a script that spreads the players out one team each?
Hi Nickelz,
01 | local teams = { |
02 | BrickColor.new( "Black" ); |
03 | BrickColor.new( "Really red" ); |
04 | BrickColor.new( "Really blue" ); |
05 | BrickColor.new( "Pastel Blue" ); |
06 | BrickColor.new( "Daisy orange" ); |
07 | BrickColor.new( "Shamrock" ); |
08 | } |
09 |
10 | local players = game:GetService( "Players" ); |
11 |
12 | for _, player in next , players:GetPlayers() do |
13 | local index = math.random(#teams) -- Random number from 1 to Amount of Teams. |
14 | local team = teams [ index ] ; -- The team color chosen on random. |
15 | player.TeamColor = team; -- Sets player's team color to random team color |
16 | teams.remove(teams, index); -- Removes the team color so it doesn't get repeated |
17 | end |
Thanks,
Best regards,
~~ KingLoneCat