How would I add a schedule to canvas.pushDialog(NewPlayerListGui); ?
I tried schedule(10000, 0, canvas.pushDialog(NewPlayerListGui)); and schedule(10000, 0, canvas.pushDialog, NewPlayerListGui); and schedule(10000, 0, canvas.pushDialog, "NewPlayerListGui"); but none of them work.