Drawline always pointing out from the front of a model

Hi,

I’m trying to write get a line to point out from the model in the forward direction:

[ ]—>

Below you can see what i got so far but this doesn’t rotate along with the model. How would i set this up?
Is Drawline appropriate for this or am i going to have to resort to a LineRenderer ?

Drawline(transform.position, transform.position+Vector3.forward*5)

Vector3.forward is a world space vector, so it’s always (0, 0, 1). try using transform.forward instead

Brilliant, thanks!