This question was 
             closed Sep 28, 2015 at 05:56 PM by 
             meechan007 for the following reason: 
             
 
            I have solved the problem but no user posted the answer.
 
               Question by 
               meechan007 · Sep 27, 2015 at 12:04 PM · 
                menubuttonslevels  
              
 
              How to make a menu for picking a level to play
I am trying to make a menu that you can pick what level to play with. I have used the game jam standard menu for my main menu but can't get the buttons on the level select screen to work. using UnityEngine; using System.Collections;
public class Level_select : MonoBehaviour {
     // Use this for initialization
 void OnMouseDown () {
     Application.LoadLevel("Breaker");
 }
 
               }
This is the script i am trying to use, It has no compiler problems yet it will not load the level.
               Comment
              
 
               
              Follow this Question
Related Questions
Unity QUIZ Game loading next round 2 Answers
UI buttons not working after 5.6.2 update? 0 Answers
Options menu won't work 0 Answers
User Playerprefs to save unlocked level 0 Answers
Carousell menu shows no pictures when new assetbundle is loaded 0 Answers