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

Why is this script not giving players a team and no errors?

Asked by 8 years ago

How do i make players get a random team?

1local teamColors = {BrickColor.new("Bright red"), BrickColor.new("Bright blue")}   
2for i, user in pairs(game:GetService("Players"):GetPlayers()) do
3if math.random(1, 2) == 1 then
4user.TeamColor = BrickColor.new('Bright blue')
5else
6user.TeamColor = BrickColor.new('Bright red')
7end
8end

1 answer

Log in to vote
0
Answered by
itsJooJoo 195
8 years ago

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
02function 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
08end
09 
10game:GetService('Players').PlayerAdded:connect(PlayerAdded)
11 
12--Since studio changed the way PlayerAdded works, put these lines to make it work in Solo mode
13for i, user in ipairs(game:GetService('Players'):GetPlayers()) do
14    PlayerAdded(user)
15end
Ad

Answer this question