//Jimmy Vegas Unity Tutorial //This script will move you to the selected level using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class LevelBegin : MonoBehaviour { public AudioSource ButtonPress; public void Level001() { ButtonPress.Play(); SceneManager.LoadScene(1); } public void Level002() { ButtonPress.Play(); SceneManager.LoadScene(2); } }