This is the same bug that causes the Gamebook not to be able to use it.
Basically, the 'Continue...' link pops up where the command bar should be. So, if you take away the command bar, the link won't show up.
If you really want to have a 'wait' in that situation, you could just do this:
request (Show, "Command")
wait {
request (Hide, "Command")
// Your script
}
Basically, this just shows the command bar long enough for it to show the 'Continue...' link, and then it just goes away.