I know how to make everyone spawn as something different, but how would I make each team spawn as a different character? (Like Phantom Forces, but with more teams, and the teams don't change.)
Just do this, create a LocalScript and type...
game.Players.PlayerAdded:connect(function(player) if player.Team.Name = "Insert Team Name" then WhereverInTheGameTheMorphIs.Name = "StarterCharacter" WhereverInTheGameTheMorphIs.Parent = game.StarterPlayer else WhereverInTheGameTheSecondMorphIs.Name = "StarterCharacter" WhereverInTheGameTheSecondMorphIs.Parent = game.StarterPlayer end)
It will instantly apply to the player because of Line 2