void OnDestroy()
 {
     if (Instance == this)
     {
         Instance = null;
     }
 }
    private void Awake()
    {
        usernameGO = GameObject.FindGameObjectWithTag("Username");

        if (Instance == null)
        {
            Instance = this;
        }
    }