How do i make players get a random team?
1 | local teamColors = { BrickColor.new( "Bright red" ), BrickColor.new( "Bright blue" ) } |
2 | for i, user in pairs (game:GetService( "Players" ):GetPlayers()) do |
3 | if math.random( 1 , 2 ) = = 1 then |
4 | user.TeamColor = BrickColor.new( 'Bright blue' ) |
5 | else |
6 | user.TeamColor = BrickColor.new( 'Bright red' ) |
7 | end |
8 | end |
Problem
You want to make a player get a random team
Solution
Use the PlayerAdded
function to work this out with each joining player. Also remove the teamColors
array because it seems to not be in use.
Final Script
01 | --Function |
02 | function PlayerAdded(user) |
03 | if math.random( 1 , 2 ) = = 1 then |
04 | user.TeamColor = BrickColor.new( 'Bright blue' ) |
05 | else |
06 | user.TeamColor = BrickColor.new( 'Bright red' ) |
07 | end |
08 | end |
09 |
10 | game:GetService( 'Players' ).PlayerAdded:connect(PlayerAdded) |
11 |
12 | --Since studio changed the way PlayerAdded works, put these lines to make it work in Solo mode |
13 | for i, user in ipairs (game:GetService( 'Players' ):GetPlayers()) do |
14 | PlayerAdded(user) |
15 | end |