Nice. The music adds to the excitement.I made following change to compile.Code: Pascal [Select][+][-]--- a/UGame.pas+++ b/UGame.pas@@ -372,7 +372,7 @@ begin angle := arctan2(dy, dx); deltaX := deltaX + cos(angle) * speed * dt; deltaY := deltaY + sin(angle) * speed * dt;- rotation := Vector2AngleDeg( Vector2Create(x, y) , Vector2Create(target.x, target.y ));+ rotation := Vector2Angle( Vector2Create(x, y) , Vector2Create(target.x, target.y )); end else begin