I have 2 teams. Called 'TERE' which is bright red, and Barbarians which is parsley green.
The spawns are set to team color, but teams can spawn on either spawn regardless of color.
This script auto ads people to a group to a team. Any knowledge of problem. I do have a script that disables some core GUi's too.
function onPlayerEntered(plyr)
if plyr:IsInGroup(2710064) then
plyr.TeamColor = game.Teams.TERE.TeamColor
else
end
end
game.Players.PlayerAdded:connect(onPlayerEntered) |