Help with Humanoid:MoveTo()

I am trying to use the Humanoid:MoveTo() thing, but i’ve never used it before and i’m having some issues.

This is the script i’m trying for it:

wait(5)

local zb = game.ReplicatedStorage.Zombie:Clone()

zb.Parent = workspace

zb.Humanoid:MoveTo(workspace.Move1)

I just want to know how i can fix it or if there is another, and better way to move a character

try using

zb.Humanoid:MoveTo(workspace.Move1.Position)