how to [Start a Timer] & Display as GUI

i have a simple trigger, Cube/box collider, named Startpoint.

when my player object crosses it, i want a timer to start counting up.

like, before the trigger, the GUI should be displaying [0:00:00] (min, secs, millisecs).

and OnTrigger, start the timer, 1,2,3,4,5,… seconds.

i also have 2nd trigger cube/box collider, named Endpoint.

when the player object crosses/triggers it, the timer stops, and that will be the player's ellapsed time.


here's what i've tried writing, referencing from other questions/answers and researching on my own, but it's not working =\

attached this c# script to my Startpoint game object:

using UnityEngine;
using System.Collections;

public class StartingLine : MonoBehaviour {

    private float startTime;
    private string ellapsedTime;

    void Awake(){

        startTime = Time.time;

    }

    // Update is called once per frame
    void Update () {

    }

    //void OnTriggerEnter(){
    //  GUI.Label(new Rect(10, 10, 100, 20), (startTime));
    //  float startTime = Time.time;
    //  
    //  guiText.text = ""+startTime;
    //}

    void OnGUI(){

        ellapsedTime = Time.time - startTime;

        GUI.Label(new Rect(10, 10, 100, 20), ellapsedTime);
    }
}

this script currently gives me the error mentioned above at the top of my question. can someone show me the right way of writing my timer? as well as the End time part.. and would i be able to create a gui skin, for a custom HUD that displays this timer?

Working script:

using UnityEngine;
using System.Collections;

public class Finishline: MonoBehaviour 
{
  private float startTime;
  private float elapsedTime;

  void Awake(){
    startTime = 0;      
  }

  void Update () {

    if (startTime > 0)
    {
       elapsedTime = Time.time - startTime;
    }
  }

  void OnTriggerEnter(){
    startTime = Time.time;
  }

  void OnTriggerExit(){
    startTime = 0;
  }

  void OnGUI(){
    GUI.Label(new Rect(300, 100, 100, 20), (elapsedTime.ToString()));
  }
}

Now if you'd rather have one trigger start the timer, and entering a second would stop it, you'd OMIT the OnTriggerExit in this script, make startTime public, and have a new script that is simply:

class TimerStopper : MonoBehaviour
{
   GameObject finishGO;

   void Start() {
     finishGO = GameObject.Find("FinnishLine");
   }

   void OnTriggerEnter() {
    finishGO.GetComponent(typeOf(FinnishLine)).startTime = 0;
  }