Scene Not loading in game view

I have a main menu scene and the game scene. For my main menu scene I created a fade out whenever the scene plays. In the game scene I created a pause menu where you have the choice to go back to the Main Menu. When I clicked to go back to the Main Menu, the scene does not load in game view but it loads in scene view.

Is there anything I am doing wrong?

Scene Change Script:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;

public class PauseChange : MonoBehaviour {

	// Use this for initialization
	void Start () {
		
	}

    public void ChangeScene(string name)
    {
        SceneManager.LoadScene("MainMenu");
        Debug.Log("Scene Loaded");
    }
}

@DarthVader1234 if you have not built it then click the file button (top left) click build settings and add the scenes not built and click build
also not saying this is another reason but you might want to put you code in the void Start (jus a suggestion don’t know if this will have any affect).
and if this does not work please post not working in comments and I will test it to see if it is a glitch. :slight_smile: