Create a script inside of ServerScriptService and put this code into it:
01 | local pathfindingService = game:GetService( "PathfindingService" ) |
02 | local pointModel = Instance.new( "Model" ) |
03 | pointModel.Name = "Points" |
04 | pointModel.Parent = game.Workspace |
07 | local remoteFunction = Instance.new( "RemoteFunction" ) |
08 | remoteFunction.Parent = game.ReplicatedStorage |
10 | function visualizePath(path) |
12 | for _, point in pairs (pointModel:GetChildren()) do |
17 | local points = path:GetPointCoordinates() |
18 | for _, point in pairs (points) do |
19 | local part = Instance.new( "Part" ) |
20 | part.Parent = pointModel |
21 | part.FormFactor = Enum.FormFactor.Custom |
22 | part.Size = Vector 3. new( 1 , 1 , 1 ) |
25 | part.CanCollide = false |
29 | game.ReplicatedStorage.RemoteFunction.OnServerInvoke = function (player, target) |
30 | local start = player.Character.Torso.Position |
31 | local path = pathfindingService:ComputeRawPathAsync(start, target, 500 ) |
35 | if path.Status = = Enum.PathStatus.FailStartNotEmpty or path.Status = = Enum.PathStatus.FailFinishNotEmpty then |
36 | print ( "Compute failed" ) |
40 | return path:GetPointCoordinates() |
Then make a Local Script and put it into Starter Pack and put this code in it:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
04 | local followingPath = false |
05 | mouse.Button 1 Down:connect( function () |
06 | if not followingPath then |
10 | local points = game.ReplicatedStorage.RemoteFunction:InvokeServer(mouse.Hit.p) |
12 | for _, point in pairs (points) do |
13 | print ( "moving to: " , point) |
14 | player.Character.Humanoid:MoveTo(point) |
17 | distance = (point - player.Character.Torso.Position).magnitude |
For more information go too the Roblox Wiki and search up PathFinding.