void Awake()
 {
     if (!Instance)
     {
         Instance = this;
     }
 }
 void OnDestroy()
 {
     Instance = null;
 }
 void Awake()
 {
     if (!Instance) Instance = this;
 }
 void OnDestroy()
 {
     Instance = null;
 }