private void MakeSingelton()
 {
     if (instance == null)
     {
         instance = this;
     }
 }
 void OnDisable()
 {
     instance = null;
 }