Okay so this is probably one of the easiest things to do but somehow I’m having problems. Basically I have a scene with just a camera and a GUI Texture that explains the game’s controls. I want the player to press “Space” to continue to the game. Here’s the script:
if(Input.GetKeyDown(KeyCode.Space)){
Application.LoadLevel("Level1");
}
Yes, Level1 is in the Build Settings. I’ve attached it to the camera with no luck, the GUI Texture, and even created an empty. I can’t get it to work no matter what. I’m sort of new to this so I apologize in advance for the stupidity haha. Any help is appreciated. Thanks!