public void onExit()
 {
     leaderBoard.addScore((int)Mathf.Round(score));
     if (score > highScore)
     {
         highScore = score;
         PlayerPrefs.SetFloat("HS", highScore);
         //leaderBoard.submitHighScore((int)Mathf.Round(score));
     }
 }