You missed a semicolon.
Application.LoadLevel ("Level1")
should be
Application.LoadLevel ("Level1");
When Unity gives you an error message like that, double click on it and it will point you to directly to the problem line in your code. That way you can find little typos like this. The error says
Unexpected symbol `}'
because it's getting that following
}
when it's expecting a
;
first
↧