how to change the scene in unity code example
Example 1: how to switch scenes unity
SceneManager.LoadScene("MyScene");
Example 2: change scene unity
SceneManager.LoadScene("name of scene", LoadSceneMode.Single);
Example 3: how do you switch scenes unity
using UnityEngine.SceneManagement;
SceneManager.LoadScene('Scene');
Example 4: change scene unity
SceneManager.LoadScene (sceneBuildIndex:/*Put the number here*/);
Example 5: how to change scenes in unity
SceneManager.LoadScene(scenename);