#I NEED EVEN MORE HELP
1 messages · Page 1 of 1 (latest)
try workspace.waypoints["1"].Position
Ok
also if you are trying to make it walk to each waypoint you should probably do it like this
local zombie = script.Parent
local waypoints = workspace.waypoints
for i = 1,#waypoints:GetChildren() do
zombie.Humanoid:MoveTo(waypoints[tostring(i)].Position)
zombie.Humanoid.MoveToFinished:Wait()
end
Tysm
yw
It worked
