How to End the round if no one picked a team

Make a custom event called OnTeamPickEnd(or any other name you like). When your team picking phase ends you call OnTeamPickEnd and inside it check teams and if one is (or both are) empty run the code for ending the match. It could be just changing levels or some other custom functionality.
As Hardcawacanary mentioned a timer can work too, but timers are a pain to manage (Your picking phases might end sooner or the object you refer to can get deleted) and overal are something I would personally avoid if possible. Or you could make a class that manages your timers for you (I have one and I can never go back to using timers normally lol) and use a timer safely with that.

2 Likes