You wouldn’t use :MoveTo() on a humanoid, you would use it on the model itself. Example: Instead of:
humanoid:MoveTo(targetPosition)
You would do:
mob:MoveTo(targetPosition)
Another thing I am noticing is that it seems like you want to make it walk to the destination? If you wanted that, you wouldn’t use :MoveTo() at all. :MoveTo() sets the model’s position instantly. You might need to use pathfinding to achieve this.
I do have one question that might help me help you: Can you show a photo of the print outputs?