So I’m making an npc that moves to a part. I tried searching it up, but it either had model:MoveTo or just ended up using some other way of moving like tween service or path finding service. So how do I fix the npc to the designated place? It also prints even though it isn’t firing.
One problem I thought of is maybe it doesn’t work in R6?
Code:
local Dummy = script.Parent.Parent:WaitForChild("Test")
local Humanoid = Dummy:WaitForChild("Humanoid")
wait(10)
Humanoid:MoveTo(workspace:WaitForChild("Pos1").Position)
print("Test")