private void LisBox_GameSelectionList_SelectedIndexChanged(object sender, EventArgs e)
        {
            string GUID = LisBox_GameSelectionList.Items[LisBox_GameSelectionList.SelectedIndex].ToString().Split('\r')[1];

            GUIDGameSelection = GUID.Remove(GUID.Count() - 1);

            Games Game = ArcadeGameStartAndStopService.GameConfig.GamesRaw.Find(x => x.GUID == GUIDGameSelection);

            PicBox_GameImage.ImageLocation = $"{Environment.CurrentDirectory}\\VRMenu\\GameSelector_Data\\StreamingAssets\\{Game.ImagePath}.png";
            RicTexBox_Description.Text     = Game.Description;
            Lab_GameName.Text = $"{Game.Name}:{Game.GUID}";
            Lab_Cost.Text     = $"Cost:{Game.CostToPlay}";
            Lab_PlayTime.Text = $"PlayTime(ms):{Game.PlayTime}";

            OwningServer.ChangeGame(GUIDGameSelection);
        }