public void BuySkinRelic()
 {
     if (GSMan.playerData.Tokens < 50)
     {
         Confirmation.SetActive(false);
         NotificationIsShown = true;
         Notification.SetActive(true);
         NotificationTimer = 3f;
         Notification.transform.GetChild(0).GetComponent <Text>().text = "Not enough tokens to purchase";
     }
     else
     {
         GSMan.BuyLootBox(LootBox.SkinRelic);
         Confirmation.SetActive(false);
         BackToMainMenu();
         LoadTokens();
     }
 }