dahood caught antilock
--\\ subscribe to dhdemon on yt for more scripts (:
getgenv().caught = false
getgenv().key = "x"
getgenv().X = 10000
getgenv().Y = 10000
getgenv().Z = 10000
game:GetService("RunService").Heartbeat:Connect(function()
if getgenv().caught then
local vel = game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(getgenv().X, getgenv().Y, getgenv().Z)
game:GetService("RunService").RenderStepped:Wait()
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = vel
end
end)
game:GetService("Players").LocalPlayer:GetMouse().KeyDown:Connect(function(keyPressed)
if keyPressed == string.lower(getgenv().key) then
pcall(function()
if getgenv().caught == false then
getgenv().caught = true
game.StarterGui:SetCore("SendNotification", {
Title = "CAUGHT GGS",
Text = "ANTI ON" })
elseif getgenv().caught == true then
getgenv().caught = false
game.StarterGui:SetCore("SendNotification", {
Title = "CAUGHT GGS",
Text = "ANTI OFF" })
end
end)
end
end)