I often see that when something does not work, some users always give the advice to add a wait(), no matter if it makes sense or not.
wait(3) after level loading makes no sense. If a code really works after adding a wait(), there is likely something else wrong with the project. The only situation where you really need a wait is when you want to wait until some other function or an event is finished.
