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

how do i set the team that every person will be in one team when they join?

Asked by 4 years ago
Edited 4 years ago

i want everyone to be in only one team (all players go into different teams currently).

and how to i make myself or join a different team separate from the team everyone else joins?

i have not tried scripting because i dont know to move players into another team

0
is it also possiible to rearrange the order of teams when they go down the leaderboard? Fr0stPh3onix 79 — 4y

2 answers

Log in to vote
1
Answered by 4 years ago

On your teams there should be a option called AutoAssignable make AutoAssignable false, make the group that you want players to be on true!

Ad
Log in to vote
1
Answered by 4 years ago

I think you were saying that you want to be on a separate team than everyone else that joins. So you could do a script that when a player joins it checks for you're name and if it matches it puts you on a separate team.

game.Players.PlayerAdded:Connect(function(player)
    if player.Name == "puturnamehere" then
        player.TeamColor = BrickColor.new("Really red") -- put teamcolor here
    end
end)

Answer this question