how can i make it so when there is 2 players a round can start but if there is only 1 it doesnt start?
Hello, you can use something like this:
while wait(0.5) do --infinite checking loop if #game.Players:GetChildren() > 1 then --game starts end end