Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I use Pathfinding?

Asked by 10 years ago

How would I make it work with an npc?

2 answers

Log in to vote
1
Answered by 10 years ago

Create a script inside of ServerScriptService and put this code into it:

01local pathfindingService = game:GetService("PathfindingService")
02local pointModel = Instance.new("Model")
03pointModel.Name = "Points"
04pointModel.Parent = game.Workspace
05 
06-- Setup remote function
07local remoteFunction = Instance.new("RemoteFunction")
08remoteFunction.Parent = game.ReplicatedStorage
09 
10function visualizePath(path)
11    -- clear old path visualization
12    for _, point in pairs(pointModel:GetChildren()) do
13        point:Destroy()
14    end
15 
View all 41 lines...

Then make a Local Script and put it into Starter Pack and put this code in it:

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03 
04local followingPath = false
05mouse.Button1Down:connect(function()
06    if not followingPath then
07        followingPath = true
08 
09        -- Ask the server to calculate a path for us
10        local points = game.ReplicatedStorage.RemoteFunction:InvokeServer(mouse.Hit.p)
11 
12        for _, point in pairs(points) do
13            print("moving to: ", point)
14            player.Character.Humanoid:MoveTo(point)
15            -- Don't try moving to the next point until we are close enough to the current point in the path
View all 23 lines...

For more information go too the Roblox Wiki and search up PathFinding.

Ad
Log in to vote
0
Answered by 10 years ago
0
Read the first one, then go to the second link to see it in action. Wizzi0GoKartBOT 0 — 10y
0
Thanks. robloxer8282 25 — 10y

Answer this question