public void AddConnectUI()
 {
     startBattleButton.SetActive(true);
     LoadningText.SetActive(false);
 }
 // Start is called before the first frame update
 void Start()
 {
     startBattleButton.SetActive(false);
     LoadningText.SetActive(true);
     PhotonNetwork.ConnectUsingSettings();
 }