Unity Camera Tutorial Question

I followed this tutorial closely http://unity3d.com/learn/tutorials/projects/roll-a-ball/moving-the-camera
but every time i go into play mode my camera acts like a first person camera and not third.

Change

void Start () { offset = transform.position; }

To

void Start()
{
	offset = transform.position - player.transform.position;
}