How do I edit this pathfinding function of mine so that it works on high walkspeed humanoids?
To get it to path find consistently to a changing position you must spam it, but when it is at higher walkspeeds it messes up, I don't know why or how to fix it, please help:
003 | function modtable.Humanoid:StartPathFind(hum, despoint) |
004 | if pathfindingcache [ hum:GetFullName() ] then |
005 | pathfindingcache [ hum:GetFullName() ] .isdone = 1 |
006 | repeat game:GetService( "RunService" ).Heartbeat:wait() until pathfindingcache [ hum:GetFullName() ] = = nil |
007 | pathfindingcache [ hum:GetFullName() ] = { } |
008 | pathfindingcache [ hum:GetFullName() ] .isdone = 0 |
010 | pathfindingcache [ hum:GetFullName() ] = { } |
011 | pathfindingcache [ hum:GetFullName() ] .isdone = 0 |
013 | if pathfinddebounce = = 1 then return end |
014 | if pcall ( function () return despoint.IsA end ) then |
015 | despoint = despoint.Position |
017 | local PathfindingService = game:GetService( "PathfindingService" ) |
020 | local path = PathfindingService:CreatePath() |
022 | local currentWaypointIndex |
024 | local function followPath() |
025 | path = PathfindingService:CreatePath() |
026 | path:ComputeAsync(hum.RootPart.Position, despoint) |
029 | if path.Status = = Enum.PathStatus.Success then |
030 | waypoints = path:GetWaypoints() |
031 | currentWaypointIndex = 1 |
032 | hum:MoveTo(waypoints [ currentWaypointIndex ] .Position) |
033 | if waypoints [ currentWaypointIndex ] .Action = = Enum.PathWaypointAction.Jump then |
037 | hum:MoveTo(hum.RootPart.Position) |
041 | local function onWaypointReached(reached) |
042 | if pathfindingcache [ hum:GetFullName() ] .isdone = = 1 then return end |
043 | if not waypoints or not currentWaypointIndex then return end |
044 | if reached and #waypoints > currentWaypointIndex then |
045 | if waypoints [ currentWaypointIndex ] then |
046 | currentWaypointIndex = currentWaypointIndex + 1 |
049 | for i,obj in ipairs (workspace:GetDescendants()) do |
050 | if pcall ( function () return obj:IsA( "BasePart" ) end ) then |
051 | if obj:IsA( "BasePart" ) and obj.CanCollide = = false then |
052 | table.insert(nocollide,obj) |
056 | local function raycast(num,num 2 ,tab 2 ) |
057 | if waypoints [ num + 1 ] = = nil then return end |
058 | local ray = Ray.new(waypoints [ num ] .Position, waypoints [ num 2 ] .Position) |
059 | table.insert(tab 2 ,waypoints [ num ] ) |
061 | if pcall ( function () return workspace:FindPartOnRayWithIgnoreList(ray,tab 2 ) end ) then |
062 | a = workspace:FindPartOnRayWithIgnoreList(ray,tab 2 ) |
069 | if raycast(currentWaypointIndex,currentWaypointIndex + 1 ,nocollide) ~ = nil then |
070 | hum:MoveTo(waypoints [ currentWaypointIndex ] .Position) |
071 | if waypoints [ currentWaypointIndex ] .Action = = Enum.PathWaypointAction.Jump then |
074 | elseif waypoints [ currentWaypointIndex + 1 ] then |
075 | local origin = currentWaypointIndex |
077 | currentWaypointIndex = currentWaypointIndex + 1 |
078 | until raycast(origin,currentWaypointIndex,nocollide) ~ = true |
079 | if waypoints [ currentWaypointIndex ] .Action = = Enum.PathWaypointAction.Jump then |
082 | hum:MoveTo(waypoints [ currentWaypointIndex ] .Position) |
084 | elseif not waypoints [ currentWaypointIndex ] then |
085 | currentWaypointIndex = currentWaypointIndex - 1 |
091 | local function onPathBlocked(blockedWaypointIndex) |
092 | if pathfindingcache [ hum:GetFullName() ] .isdone = = 1 then return end |
093 | if blockedWaypointIndex > currentWaypointIndex then |
098 | connect [ "onPathBlocked" ] = path.Blocked:Connect(onPathBlocked) |
100 | connect [ "onWaypointReached" ] = hum.MoveToFinished:Connect(onWaypointReached) |
101 | local function check() |
102 | if pathfindingcache [ hum:GetFullName() ] .isdone = = 1 then |
104 | connect [ "onPathBlocked" ] :disconnect() |
105 | connect [ "onWaypointReached" ] :disconnect() |
106 | pathfindingcache [ hum:GetFullName() ] = nil |
107 | connect [ "check" ] :disconnect() |
110 | connect [ "check" ] = game:GetService( "RunService" ).Heartbeat:Connect(check) |