whats wrong with my script? sorry im new to this thxs

i created a brickbreaker game and it wont let me load more then 2 level why i dont understand all your help is appreciated im new to all this scripting and programming sorry and thxs

[4998-screen+shot+2012-11-16+at+12.26.43+pm.png|4998]

In case you haven’t already. Take a look at your Build Settings and add any additional scenes to the build that you want to include. Perhaps you’ve not added the scenes (levels) to the build for it to call. Good luck!

If you call Destroy(gameObject), the next instructions of the script won’t be executed (because the object itself is destroied!). So, call Destroy(gameObject) as the final instruction of the function Die().
And, certainly, make sure to have included level2 into the Build Settings.