How do I make a NPC follow a specific player?

Hello, I’ve been working on this game, and I thought to make a NPC follow a admin or a owner for them to be easily recognizable, but I don’t really know how to achieve that. Could I get any kind of help, please?

1 Like

Are you using MoveTo()? You could try to make the NPC move to the player’s position, but if you want the NPC to follow behind, i’d recommend doing the player’s position subtracted by a vector3.new() Y position

I could try that. Thanks for help.

Position - Vector3.new(0, Value, 0)
Describes a position below whatever ‘Position’ represents (providing ‘Value’ is a positive number value).

1 Like