I had someone help me remake my pathfinding module, since it was very buggy. The new version of the module somewhat works, which just fixed most of the player chasing stuff, but not so much of the waypoints. I don’t blame them for giving up on this since pathfinding is just so difficult for no reason.
I don’t really know how to describe it and I don’t know if I’m describing it correctly, but the AI will not move to it’s waypoints. It’ll move, but it will just move around in the same spot constantly, as if it was going to a waypoint, and then switching which one it wanted to go to instantly.
I’ve tried a few things but I can’t really seem to fix the issue, there aren’t any errors either. The AI works fine when its chasing a player.
function followPath(killer, destination)
local destinationPosition = destination
if typeof(destination) ~= "Vector3" then
destinationPosition = destination.Position
end
local path = getPath(killer, destinationPosition)
if path.Status == Enum.PathStatus.Success then -- Successfully generated path to destination
local waypoints = path:GetWaypoints()
---- Detect if path becomes blocked
--blockedConnection = path.Blocked:Connect(function(blockedWaypointIndex)
-- -- Check if the obstacle is further down the path
-- --if blockedWaypointIndex >= nextWaypointIndex then
-- -- Stop detecting path blockage until path is re-computed
-- blockedConnection:Disconnect()
-- -- Call function to re-compute new path
-- followPath(killer, destination)
-- --end
--end)
for i, waypoint in pairs(waypoints) do
if i == 1 then continue end -- Prevent jitteriness when switching from pursuit to pathfinding
------------------------------------------
local part = Instance.new("Part")
part.Position = waypoint.Position
part.Size = Vector3.new(0.5, 0.5, 0.5)
part.Color = Color3.new(1, 0, 1)
part.Anchored = true
part.CanCollide = false
part.CanQuery = false
part.Parent = workspace
-------------------------------------------
killer.Humanoid.WalkSpeed = killer:GetAttribute("WalkSpeed")
killer.Humanoid:MoveTo(waypoint.Position)-- - target.HumanoidRootPart.CFrame.LookVector * 3)
--print(waypoint.Action)
while true do
if theTarget == nil then
print("Target is nil")
end
if killer.HumanoidRootPart.Position.Y + 1 < destinationPosition.Y then
killer.Humanoid.Jump = true
--if destinationPosition.Y - killer.HumanoidRootPart.Position.Y < killer.Humanoid.JumpHeight then
--end
end
if moveToFinishedDone == true or checkForLineOfSight(killer.HumanoidRootPart.Position, destinationPosition) == true then
moveToFinishedDone = false
break
end
task.wait()
end
end
end
end