Hi guys!
I am trying to make a simple x2 team chance but this is not working...any ideas?
Thanks :)
id = 186964027
list = {}
function AddPlayers2()
for i,v in pairs (game.Players:GetChildren()) do
table.insert(list,v)
if game:GetService("GamePassService"):PlayerHasPass(v,id) then
table.insert(list,v)
end
end
num1 = math.random(1,#list)
print(list[num1])
num1.TeamColor = BrickColor.Blue() --erroring but dont know why
num2 = math.random(1,#list)
num2.TeamColor = BrickColor.Blue()
if num2.Name == num1.name then
repeat
num2 = math.random(1,#list)
num2.TeamColor = BrickColor.Blue()
until
num2.name ~= num1.Name
--how to put reamining non-picked players into another team?
end
end |