I made a game and a team for admins, how would I have them spawn on a certain spawn when they join the game?
Put this in a script in the workspace
function Add(Plr) if Plr.Admin.Value==true then Plr.TeamColor=="" --Put the team color for admins here end end game.Players.PlayerAdded:connect(Add)
If there isn't already an admin value in the player then edit the admin script and make it so when the player joins it inserts a boolvalue named 'Admin'. Next, check if the player is an admin, and if they are, then set the Admin value to true.