Whenever the model walks, its legs don’t move. How do I add a certain type of walking animation from the marketplace inside of him? Here is the script:
local NPC = game.Workspace.Rig
while true do
NPC.Humanoid:MoveTo(game.Workspace.Part.Position)
NPC.Humanoid.MoveToFinished:Wait()
wait(5)
NPC.Humanoid:MoveTo(game.Workspace.Part2.Position)
NPC.Humanoid.MoveToFinished:Wait()
wait(5)
NPC.Humanoid:MoveTo(game.Workspace.Part3.Position)
NPC.Humanoid.MoveToFinished:Wait()
wait(5)
NPC.Humanoid:MoveTo(game.Workspace.Part4.Position)
NPC.Humanoid.MoveToFinished:Wait()
wait(5)
end
Feedback would be appreiciated!