What i mean is how can i get a script that makes it so there can only be one player on a team. I have three teams. 1. Smashers 2. Crushers 3. Destroyers
Use a PlayerAdded connection on the team and check if there is more than one person by using GetPlayers() on the team. Example:
local Team=game:GetService'Teams'.TeamName Team.PlayerAdded:Connect(function(Player) if #Team:GetPlayers()>1 then Player.Team=nil end end)