void Start()
    {
        if (!isSetup)
        {
            SetupClient();
        }
        if (isClientInitializated && !isServer)
        {
            OnConnected(null);
        }

        if (isServer)
        {
            lobbyController.SetHostButtons();
        }
    }