When I click the start button it works fine while on computer but crashes when I do it while on my phone. Also I have used similiar code for another app I made and it works fine for that. My code is listed below.
using UnityEngine;
using System.Collections;
public class StartGame : MonoBehaviour {
void Update () {
if(Input.GetMouseButtonDown(0) )
{
Application.LoadLevel ("Game");
Score.score = 0;
}
}
}