mirror of
https://github.com/codeninjasuk/roblox-world-24.git
synced 2024-11-21 23:18:08 -05:00
8 lines
233 B
Smalltalk
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
|