private IEnumerator RefreshHighScores()
    {
        YieldInstruction wfs = new WaitForSeconds(30);

        while (true)
        {
            leaderboardHandler.DownloadHighScore();
            yield return(wfs);
        }
    }