I have a Humanoid that I wantmoving with the legs along with the character itsef, but only ythe character moves. The legs don't animate. How do I animate the legs?
local i = 0 while i ~= 10 do wait(1) i = i + 1 script.Parent.Humanoid:Move(Vector3.new(0,0,1),true) end
You can instead make the NPC manually walk there by using the WalkToPoint() method/function like so:
local xyz = Vector3.new(0, 0, 0) --change to the coordinates script.Parent.Humanoid:WalkToPoint(xyz)