Aimbot + Bypass Anti Cheat
Aimbot + Bypass Anti Cheat
11 by ChatGPT
-- Features:
-- • GUI Toggles: Aimbot, Silent Aim, Show FOV, Team Check
-- • FOV Circle fixed at center
-- • Auto-switch target when current target dies
-- • Mobile "Lock Aim" button support
-- • Smooth aim (lerp) to allow manual camera movement even when aimbot is on
-- • Target only within FOV circle and truly visible (no wall)
-- SETTINGS
local Settings = {
AimbotEnabled = false,
SilentAimEnabled = false,
AimPart = "Head",
FOV = 120,
TeamCheck = true,
ShowFOV = true,
Smoothness = 0.15 -- 0 = instant lock, 1 = no auto-aim movement
}
-- UI Setup
local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
ScreenGui.Name = "AimbotUI"
toggle.MouseButton1Click:Connect(function()
state = not state
toggle.Text = name .. ": " .. (state and "ON" or "OFF")
callback(state)
end)
return toggle
end
-- Create toggles
CreateToggle("Aimbot", 5, false, function(val) Settings.AimbotEnabled = val
end)
CreateToggle("Silent Aim", 35, false, function(val) Settings.SilentAimEnabled = val
end)
CreateToggle("Show FOV", 65, true, function(val) Settings.ShowFOV = val
end)
CreateToggle("Team Check", 95, true, function(val) Settings.TeamCheck = val
end)
-- FOV Circle
local FOVCircle = Drawing.new("Circle")
FOVCircle.Thickness = 1
FOVCircle.Radius = Settings.FOV
FOVCircle.Color = Color3.fromRGB(0, 255, 0)
FOVCircle.Filled = false
RunService.RenderStepped:Connect(function()
FOVCircle.Position = Vector2.new(Camera.ViewportSize.X / 2,
Camera.ViewportSize.Y / 2)
FOVCircle.Visible = Settings.ShowFOV
FOVCircle.Radius = Settings.FOV
end)
-- Get closest valid player within FOV circle and truly visible
local function GetClosestPlayer()
local closest, shortestDist = nil, Settings.FOV
local center = Vector2.new(Camera.ViewportSize.X/2, Camera.ViewportSize.Y/2)
lockAimBtn.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseButton1 then
Settings.AimbotEnabled = true
lockAimBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 0)
lockAimBtn.Text = "Lock Aim ON"
end
end)
lockAimBtn.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch or input.UserInputType ==
Enum.UserInputType.MouseButton1 then
Settings.AimbotEnabled = false
lockAimBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
lockAimBtn.Text = "Lock Aim"
end
end)