unity how to make gamemanager instance

Code Example - unity how to make gamemanager instance

                
                        //Making the Game Manager script accessible (Taro Dev Code)
public static GameManager = instance;
void Awake(){
	instance = this;
}