Whenever i try to run my script it outputs this "13:52:44.021 - Workspace.NPC.Script:9: function arguments expected near 'for'" Here is my script:
01 | local torso = script.Parent.Torso |
02 | local base = workspace.Base.Position |
03 | local humanoid = script.Parent.Humanoid |
04 |
05 |
06 | local path = game:GetService( "PathfindingService" ):FindPathAsync(torso,base) |
07 | local points = path:GetWaypoints |
08 |
09 | for i,v in pairs (points) do |
10 | local p = Instance.new( "Part" ,workspace) |
11 | p.Anchored = true |
12 | p.CanCollide = false |
13 | p.CFrame = CFrame.new(v.Position) |
14 | p.Size = Vector 3. new( 1 , 1 , 1 ,) |
15 | end |
On line seven, you forgot to finish the :GetWaypoints() function/method. Just change
local points = path:GetWaypoints
to
local points = path:GetWaypoints()
EDIT: Also on line 20 you seem to have made a typo.
human:.MoveToFinished:wait()
should be
human.MoveToFinished:wait()