I want the game to remain paused for ONLY 3 seconds, then I want it to resume itself. But it is not working:
Try 1:
System: Set Time Scale = 0
System: Wait 3 seconds
System: Set Time Scale = 1
Doesn't work
Try 2:
Variable Count = 0;
System: Set Time Scale = 0
System: Every 1 second, add 1 to variable count.
Is count = 3? If yes then Set Time Scale = 1
Doesn't work.
It looks like when "time scale = 0" everything stops working, even the "in every X sec" action stops working. Is there a workaround for this?