public void Awake()
 {
     if (VP == null)
     {
         VP = this;
         Panel.SetActive(false);
     }
     else if (VP != this)
     {
         Destroy(gameObject);
     }
 }