Feel free to post the methods you would like help comparing, there are usually an arbitrary amount of optimization/balancing that can be done on most methods as well
Just make the wait interval longer. What code are you working with? I strongly doubt you’re running into any efficiency issues. Calculating the distance between two points is not computationally expensive.
On the other hand, if you’re doing something really expensive (like using an old zombie script that iterates through the entire Workspace every approx. 1/29th of a second… shudder), then yes of course you might experience some kind of latency.
RunService.Heartbeat and RunService.Stepped exist on the client and server, while RunService.RenderStepped is limited to the client.
The one addition I would make depending on your map is to ray cast the target, and just ignore pathfinding if there are no obstructions. This has the benefit of being more efficient in some cases since rays are much cheaper to run, but will cause problems if there are holes in the map.
If you aren’t using pathfinding, then you shouldn’t run into problems unless you are comparing a lot (thousands) of distances every 1/30th of a second.
Well, if he used pathfinding service, he would only have to update the path and target position if the user is like 5 studs from the last target position recorded.
Meaning that, if you were walking in a direction, the NPC pathfinding path would only have to update 3 - 4 times a second (rather than 30 times a second as you stated -if the player is walking at the default 16 walkspeed)
And if the player is falling, then you can ignore pathfinding until the player has landed.