roblox-world-24/path_finding_npc.cs
2024-05-29 10:25:31 +01:00

8 lines
233 B
Smalltalk

local waypoints = game.Workspace.Waypoints
local npc = script.Parent:WaitForChild("Humanoid")
while true do
for waypoint = 1, #waypoints:GetChildren() - 1 do
npc:MoveTo(waypoints[waypoint].Position)
npc.MoveToFinished:Wait()
end
end