i cant make the spawn im using ONLY change teams because i want players to spawn somewhere else instead of the point the team changer is and i cant figure it out
What you can do is make it a part instead of a checkpoint and when you touch it changes team.
local part=script.Parent part.Touched:Connect(function(hit) local player=game.Players:GetPlayerFromCharacter(hit.Parent) if player then player.TeamColor=BrickColor.new("Whatever you want.") end end)