private void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
 }
 private void OnDestroy()
 {
     instance = null;
 }