ss1 = NDSolve[{
x'[t] == 8*(1 - (x[t]^2 + y[t]^2))*x[t] + ω[t]*y[t] + 1.1*Sin[11*t],
y'[t] == 8*(1 - (x[t]^2 + y[t]^2))*y[t] - ω[t]*x[t],
ω'[t] == 1.1*Sin[11*t]*y[t]/(Sqrt[x[t]^2 + y[t]^2]),
x[0] == 1, y[0] == 0, ω[0] == 2},
{x, y, ω}, {t, 0, 200*Pi}
];
Animate[
ParametricPlot3D[
Evaluate[{x[t], y[t], t} /. ss1],
{t, tmax - 2, tmax},
PlotRange -> All, PlotStyle -> {Thick, Green},
BoxRatios -> {1, 1, 2}, PerformanceGoal -> "Quality"
],
{tmax, 2, 200*Pi}
];
When you run this in Mathematica, you will see that a trajectory is shown with specific amount of time, right now, what I am trying to do is to add a red dot on the head of this snake-like trajectory, then it will be very clear in which direction it is evolving. any help from any one will be very helpful.

#4&to#3&inMeshFunctionsand removeBoxRatios ->...and/. Point -> ...) it should work for the 2D case. Thank you for the accept. – kglr Nov 14 '19 at 20:47