I have this script which has an npc which follows the player but I feel it needs improving. Please let me know what I can improve in this code:
--// Services //--
local PathfindingService = game:GetService("PathfindingService")
local RunService = game:GetService("RunService")
local ServerStorageService = game:GetService("ServerStorage")
local WorkspaceService = game:GetService("Workspace")
local PlayersService = game:GetService("Players")
--// Player Variables //--
local Character = script.Parent
local HumanoidRootPart = Character.HumanoidRootPart
--// Rig Variables //--
local Rig = ServerStorageService.Rig
local RigHumanoid = Rig.Humanoid
local RigHumanoidRootPart = Rig.HumanoidRootPart
--// Debounces //--
local TeleportingDebounce = false
--// Rig Setup //--
Rig.Parent = WorkspaceService
Rig.PrimaryPart:SetNetworkOwner(nil)
--// Functions //--
local function FollowPlayer()
local Path = PathfindingService:CreatePath()
local ComputedPath = Path:ComputeAsync(Rig.HumanoidRootPart.Position, HumanoidRootPart.Position - Vector3.new(5, 0, 0))
return Path
end
--// Connections //--
RunService.Stepped:Connect(function()
FollowPlayer()
local Path = FollowPlayer()
for _, Waypoint in pairs(Path:GetWaypoints()) do
RigHumanoid:MoveTo(Waypoint.Position)
end
local Distance = (HumanoidRootPart.Position.Magnitude - RigHumanoidRootPart.Position.Magnitude)
if Distance >= 25 or Distance <= -25 then
if not TeleportingDebounce then
TeleportingDebounce = true
RigHumanoidRootPart.CFrame = HumanoidRootPart.CFrame * CFrame.new(-5, 0, 0)
task.wait(2)
TeleportingDebounce = false
end
end
end)