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:
1 | while wait( 0.5 ) do --infinite checking loop |
2 | if #game.Players:GetChildren() > 1 then |
3 | --game starts |
4 | end |
5 | end |