public static void OnGameOver()
    {
        if (self == null)
        {
            return;
        }
        self.canvas.SetActive(true);
        self.GetComponent <AudioSource>().Play();

        self.textField.text = "You got a score of " + CoinCounter.GetCoins() + " and took " + TimerController.GetTime() + " Minutes!";
    }