How do I make an auto join script so when you join the game you're already on the exact team connected with the group on the roblox website?
game.Players.PlayerAdded:connect(function(np)--gets the new player, firing when they join. if np:IsInGroup(782820)then--finds if the player is in the group. np.TeamColor=BrickColor.new("Cyan")--sets the players team color. end end)