My game doesn't want to save because I there is something wrong with disabling GUI. I thought I wrote the script correct. It's: line 1: GUIoff(0);
line 2: GUIoff(1)
According to your code it says:
GUIOff(1)
You're missing a semicolon ( ; ) so add one like this.
GUIOff(1);
;)
You can also use the GUI name as the parameter, rather than it's number, which removes the possibility of using the wrong GUI number.