any suggestions send
static var showScore : boolean = false;
static var scoreVal : int = 0;
function EndGame(finalScore : int)
{
showScore = true;
scoreVal = finalScore;
}
With the above, you can just use “Name Of Script”.scoreVal to get the score.