I want to make players get randomly assigned to teams. I have one script for this, but its not really that good. Is there a better way to do this? Here is my script:
01 | local assign = 1 |
02 | for i,v in pairs (game.Players:GetChildren()) do |
03 | if assign = 1 then |
04 | assign = 2 |
05 | v.Team.BrickColor = BrickColor.new( "Black" ) |
06 | else |
07 |
08 | assign = 1 |
09 | v.Team.BrickColor = BrickColor.new( "White" ) |
10 | end |
I hope this works for you, because it worked for me.
01 | for key, value in pairs (game.Players:GetChildren()) do |
02 | local TeamAssign = math.random( 1 , 3 ) --custom amount of teams |
03 | if TeamAssign = = 1 then |
04 | value.TeamColor = BrickColor.new( "Bright red" ) --your team here |
05 | elseif TeamAssign = = 2 then |
06 | value.TeamColor = BrickColor.new( "Bright blue" ) --your team here |
07 | elseif TeamAssign = = 3 then |
08 | value.TeamColor = BrickColor.new( "Bright green" ) --your team here |
09 | end |
10 | end |
Here you go. Make sure that every team you put in this script exists in your game. Sincerely, DominusInfinitus