Ok so all im trying to do is make it so that the clock doesn’t start to run till you hit the left mouse button (fire1). here is what im currently using. thank you for any help
var Timer = 0.0;
function Update ()
{
Timer += Time.deltaTime;
guiText.text = “” + Timer;
}