(2022 Pastebin) Untitled Hood Aimlock, Anti Loc... -
: This manipulates your character's velocity to make you harder to hit for users using similar aimbots.
: You can change the Smoothness value (lower is snappier, higher is more "legit" looking). (2022 Pastebin) Untitled Hood Aimlock, Anti Loc...
-- [[ Untitled Hood Aimlock & Anti-Lock ]] -- -- [[ Features: Smooth Aim, Velocity Anti, Target HUD ]] -- local Settings = { Aimlock = { Enabled = true, Keybind = "q", Smoothness = 0.05, Part = "UpperTorso" -- Options: Head, UpperTorso, HumanoidRootPart }, AntiLock = { Enabled = true, Mode = "Velocity", -- Methods to break enemy aim Multiplier = -50 } } -- Target Variable local Target = nil local Mouse = game.Players.LocalPlayer:GetMouse() -- Aimlock Logic Mouse.KeyDown:Connect(function(key) if key == Settings.Aimlock.Keybind then if Target == nil then local function GetClosestPlayer() local Closest = nil local Distance = math.huge for _, v in pairs(game.Players:GetPlayers()) do if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then local Pos = game.Workspace.CurrentCamera:WorldToViewportPoint(v.Character.PrimaryPart.Position) local Magnitude = (Vector2.new(Pos.X, Pos.Y) - Vector2.new(Mouse.X, Mouse.Y)).Magnitude if Magnitude < Distance then Closest = v Distance = Magnitude end end end return Closest end Target = GetClosestPlayer() else Target = nil end end end) -- RunService Loop for Smooth Follow game:GetService("RunService").RenderStepped:Connect(function() if Settings.Aimlock.Enabled and Target and Target.Character then local TargetPos = Target.Character[Settings.Aimlock.Part].Position local Main = game.Workspace.CurrentCamera.CFrame game.Workspace.CurrentCamera.CFrame = Main:Lerp(CFrame.new(Main.Position, TargetPos), Settings.Aimlock.Smoothness) end -- Anti-Aim/Anti-Lock Logic if Settings.AntiLock.Enabled then local Char = game.Players.LocalPlayer.Character if Char and Char:FindFirstChild("HumanoidRootPart") then Char.HumanoidRootPart.Velocity = Char.HumanoidRootPart.CFrame.LookVector * Settings.AntiLock.Multiplier end end end) print("Untitled Hood Script Loaded Successfully") Use code with caution. Copied to clipboard Key Components: : Usually set to "Q" or "E" . : This manipulates your character's velocity to make