GetDirection(unit) -- returns Vector3 for current direction (face direction), works on any object!
Code Example :
OnDraw(function() local pos = Vector(myHero) + Vector(GetDirection(myHero)):normalized() * 300 DrawCircle(pos, 100, 2, 0, ARGB(255,255,255,255)) end)