void Awake()
 {
     if (Instance && Instance != this)
     {
         Destroy(gameObject);
     }
     Instance = this;
 }
 private void OnDisable()
 {
     Instance = null;
 }