$game_system.hud = true/false
event stopping bug
Quoted directly from the manual:
If this feature is being used, the HUD can be turned off/on during the game. To do so it is ncessary to use an event Call Script command with one or more of the following syntaxes:
$game_system.hud = true/false
In my first event that runs in the game, the introductory event, before anything at all happens, I have the event "Script" with the following syntax in it:
$game_system.hud = false
What happens next is, the game starts, the hud disappears... and then nothing. The music doesnt play, the text doesnt scroll, nothing.

Halp
Am I supposed to be adding a code under it with some sort of "end" or something? I put "End" below the above code and tried that but it gives me a syntax error and crashes the game.