Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #96 from ttwizz/dev
Browse files Browse the repository at this point in the history
Release 1.8.14
  • Loading branch information
ttwizz authored Sep 7, 2024
2 parents 515b8e0 + 5f05cb3 commit 129bf5f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ ___
Open Aimbot is a **universal** open source framework. It offers a wide selection of extensive functionality, including:
- ***Over 55 Features***
- ***Detection Bypasses***
- *Team*, *Friend*, *Wall*, *Water*, *FoV*, *Magnitude*, *Transparency*, *Group*, *Player* Checks
- *Team*, *Friend*, *Wall*, *Water*, *Verified Badge*, *FoV*, *Magnitude*, *Transparency*, *Group*, *Player* Checks
- Ability to set *Sensitivity*, *Camera Shaking*, *Mouse & Camera Methods*, *Move Direction Prediction*, *Static, Dynamic & Auto Offset*, *Activation Keys*, *One-Press Mode*, *Target Objects*, *Ignored & Target Players*, *Display Notification Log*, *TriggerBot*, *ESP*, *FoV*, *Tracers* and other more subtle options
- Availability of *Silent Aim*, *Security Warnings*, *Maximum User-Friendliness* and ***Configuration Manager***
- Availability of ***Silent Aim***, *Security Warnings*, *Maximum User-Friendliness* and ***Configuration Manager***
- A *Beautiful* and *Unique Interface* that supports *Minimization*, *Maximization* and even ***Resizing***
- ***Support For Absolutely All Exploits***
- ***Clean*** and ***Understandable Source Code***, providing the simple possibility of *Modification* for your own purposes and *Contribution*
Expand Down
26 changes: 13 additions & 13 deletions source.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--[[
Open Aimbot
Universal Open Source Aimbot
Release 1.8.13
Release 1.8.14
twix.cyou/pix
twix.cyou/OpenAimbotV3rm
Expand Down Expand Up @@ -113,6 +113,7 @@ Configuration.TeamCheck = ImportedConfiguration["TeamCheck"] or false
Configuration.FriendCheck = ImportedConfiguration["FriendCheck"] or false
Configuration.WallCheck = ImportedConfiguration["WallCheck"] or false
Configuration.WaterCheck = ImportedConfiguration["WaterCheck"] or false
Configuration.VerifiedBadgeCheck = ImportedConfiguration["VerifiedBadgeCheck"] or false

Configuration.FoVCheck = ImportedConfiguration["FoVCheck"] or false
Configuration.FoVRadius = ImportedConfiguration["FoVRadius"] or 100
Expand Down Expand Up @@ -563,6 +564,11 @@ do
Configuration.WaterCheck = Value
end)

local VerifiedBadgeCheckToggle = SimpleChecksSection:AddToggle("VerifiedBadgeCheckToggle", { Title = "Verified Badge Check", Description = "Toggles the Verified Badge Check", Default = Configuration.VerifiedBadgeCheck })
VerifiedBadgeCheckToggle:OnChanged(function(Value)
Configuration.VerifiedBadgeCheck = Value
end)

local AdvancedChecksSection = Tabs.Checks:AddSection("Advanced Checks")

local FoVCheckToggle = AdvancedChecksSection:AddToggle("FoVCheckToggle", { Title = "FoV Check", Description = "Toggles the FoV Check", Default = Configuration.FoVCheck })
Expand Down Expand Up @@ -1330,6 +1336,8 @@ local function IsReady(Target)
if not RaycastResult or not RaycastResult.Instance or not RaycastResult.Instance:FindFirstAncestor(_Player.Name) then
return false
end
elseif Configuration.VerifiedBadgeCheck and _Player.HasVerifiedBadge then
return false
elseif Configuration.MagnitudeCheck and (TargetPart.Position - NativePart.Position).Magnitude > Configuration.TriggerMagnitude then
return false
elseif Configuration.TransparencyCheck and Target:FindFirstChild("Head") and Target:FindFirstChild("Head"):IsA("BasePart") and Target:FindFirstChild("Head").Transparency >= Configuration.IgnoredTransparency then
Expand Down Expand Up @@ -1444,9 +1452,7 @@ local function Visualize(Object)
if string.lower(Object) == "fov" then
local FoV = getfenv().Drawing.new("Circle")
FoV.Visible = false
if FoV.ZIndex then
FoV.ZIndex = 2
end
FoV.ZIndex = 2
FoV.Filled = false
FoV.NumSides = 1000
FoV.Radius = Configuration.FoVRadius
Expand All @@ -1457,9 +1463,7 @@ local function Visualize(Object)
elseif string.lower(Object) == "espbox" then
local ESPBox = getfenv().Drawing.new("Square")
ESPBox.Visible = false
if ESPBox.ZIndex then
ESPBox.ZIndex = 1
end
ESPBox.ZIndex = 1
ESPBox.Filled = false
ESPBox.Thickness = Configuration.ESPThickness
ESPBox.Transparency = Configuration.ESPTransparency
Expand All @@ -1468,9 +1472,7 @@ local function Visualize(Object)
elseif string.lower(Object) == "nameesp" then
local NameESP = getfenv().Drawing.new("Text")
NameESP.Visible = false
if NameESP.ZIndex then
NameESP.ZIndex = 1
end
NameESP.ZIndex = 1
NameESP.Center = true
NameESP.Outline = true
NameESP.Size = Configuration.NameESPSize
Expand All @@ -1480,9 +1482,7 @@ local function Visualize(Object)
elseif string.lower(Object) == "traceresp" then
local TracerESP = getfenv().Drawing.new("Line")
TracerESP.Visible = false
if TracerESP.ZIndex then
TracerESP.ZIndex = 1
end
TracerESP.ZIndex = 1
TracerESP.Thickness = Configuration.ESPThickness
TracerESP.Transparency = Configuration.ESPTransparency
TracerESP.Color = Configuration.ESPColour
Expand Down

0 comments on commit 129bf5f

Please sign in to comment.