World of Aincrad KillAura [Autofarm Update]

Script Credit :- davidfish111
Features

World of Aincrad KillAura [Autofarm Update]

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

getgenv().settings = { enabled = true, killaura = { enabled = true, distance = 30 }, farm = { enabled = true, distance = -15, mobs = {'GUARDIAN [LVL 17]', 'GUARDIAN [LVL 18]', 'GUARDIAN [LVL 19]'} } } if getgenv().executed then return end local function findmob() local mobs = settings.farm.mobs local dist = math.huge local mob = nil for _, v in pairs(workspace.Attackable:GetChildren()) do if table.find(mobs, v.Name) and v:FindFirstChild('HumanoidRootPart') and v:FindFirstChildOfClass('Humanoid').Health ~= 0 then local mag = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v:GetPivot().Position).Magnitude if mag < dist then dist = mag mob = v end end end return mob end game:GetService('RunService').PostSimulation:Connect(function() if settings.enabled then local mob = findmob() if mob then if settings.farm.enabled then game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = mob:GetPivot() * CFrame.new(0, settings.farm.distance, 0) * CFrame.Angles(math.rad(90),0,0) end if settings.killaura.enabled then local mag = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - mob:GetPivot().Position).Magnitude if mag < settings.killaura.distance then game:GetService("ReplicatedStorage").RemoteEvents.Hit:FireServer("Attack", mob) end end end end end) getgenv().executed = true