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 #107 from ttwizz/dev
Browse files Browse the repository at this point in the history
Release 1.9.1
  • Loading branch information
ttwizz authored Oct 12, 2024
2 parents c6877c3 + a125b9c commit 268d642
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions source.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
༺☆༻____________☾✧ ✩ ✧☽____________༺☆༻༺☆༻____________☾✧ ✩ ✧☽____________༺☆༻
✨Universal Aim Assist Framework✨
Release 1.9
Release 1.9.1
twix.cyou/pix
twix.cyou/OpenAimbotV3rm
Expand All @@ -31,6 +31,8 @@
Wiki: https://moderka.org/Open-Aimbot
Trustpilot: https://www.trustpilot.com/review/moderka.org
•───────•°•❀•°•───────•୧‿̩͙ ˖︵ꕀ ⠀𓏶 ̣̣̥⠀ ꕀ︵˖ ̩͙‿୨•───────•°•❀•°•───────•]]


Expand Down Expand Up @@ -221,7 +223,7 @@ Configuration.ESPColour = ImportedConfiguration["ESPColour"] or Color3.fromRGB(2
Configuration.ESPUseTeamColour = ImportedConfiguration["ESPUseTeamColour"] or false

Configuration.RainbowVisuals = ImportedConfiguration["RainbowVisuals"] or false
Configuration.RainbowDelay = ImportedConfiguration["RainbowDelay"] or 0.5
Configuration.RainbowDelay = ImportedConfiguration["RainbowDelay"] or 5


--! Constants
Expand Down Expand Up @@ -253,6 +255,8 @@ end
local Fluent = nil
local ShowWarning = false

local Clock = os.clock()

local Aiming = false
local Target = nil
local Tween = nil
Expand Down Expand Up @@ -402,16 +406,6 @@ do
Configuration.AimPart = Value
end
})
task.spawn(function()
while task.wait(1) do
if not Fluent then
break
end
if Configuration.RandomAimPart and #Configuration.AimPartDropdownValues > 0 then
AimPartDropdown:SetValue(Configuration.AimPartDropdownValues[Random.new():NextInteger(1, #Configuration.AimPartDropdownValues)])
end
end
end)

local RandomAimPartToggle = AimbotSection:AddToggle("RandomAimPart", { Title = "Random Aim Part", Description = "Selects every second a Random Aim Part from Dropdown", Default = Configuration.RandomAimPart })
RandomAimPartToggle:OnChanged(function(Value)
Expand Down Expand Up @@ -990,7 +984,7 @@ do
Configuration.FoVFilled = Value
end)

local FoVColourPicker = FoVSection:AddColorpicker("FoVColour", {
FoVSection:AddColorpicker("FoVColour", {
Title = "FoV Colour",
Description = "Changes the FoV Colour",
Default = Configuration.FoVColour,
Expand Down Expand Up @@ -1055,7 +1049,7 @@ do
end
})

local NameESPOutlineColourPicker = ESPSection:AddColorpicker("NameESPOutlineColour", {
ESPSection:AddColorpicker("NameESPOutlineColour", {
Title = "Name ESP Outline",
Description = "Changes the Name ESP Outline Colour",
Default = Configuration.NameESPOutlineColour,
Expand Down Expand Up @@ -1093,7 +1087,7 @@ do
end
})

local ESPColourPicker = ESPSection:AddColorpicker("ESPColour", {
ESPSection:AddColorpicker("ESPColour", {
Title = "ESP Colour",
Description = "Changes the ESP Colour",
Default = Configuration.ESPColour,
Expand All @@ -1113,27 +1107,13 @@ do
RainbowVisualsToggle:OnChanged(function(Value)
Configuration.RainbowVisuals = Value
end)
task.spawn(function()
while task.wait(Configuration.RainbowDelay) do
for Index = 1, 230 do
if not Fluent then
break
elseif Configuration.RainbowVisuals then
FoVColourPicker:SetValue({ Index / 230, 1, 1 })
NameESPOutlineColourPicker:SetValue({ (230 - Index) / 230, 1, 1 })
ESPColourPicker:SetValue({ Index / 230, 1, 1 })
end
task.wait(Configuration.RainbowDelay / 5)
end
end
end)

VisualsSection:AddSlider("RainbowDelay", {
Title = "Rainbow Delay",
Description = "Changes the Rainbow Delay",
Default = Configuration.RainbowDelay,
Min = 0.1,
Max = 1,
Min = 1,
Max = 10,
Rounding = 1,
Callback = function(Value)
Configuration.RainbowDelay = Value
Expand Down Expand Up @@ -1493,6 +1473,16 @@ do
}
}
})
else
Window:Dialog({
Title = "Open Aimbot 💫PREMIUM💫",
Content = "✨Upgrade to unlock all Options✨ – Contact @ttwiz_z via Discord to buy",
Buttons = {
{
Title = "Confirm"
}
}
})
end
end
end
Expand Down Expand Up @@ -2125,7 +2115,7 @@ function TrackingHandler:InitializePlayers()
end
end

task.spawn(TrackingHandler.InitializePlayers)
TrackingHandler:InitializePlayers()


--! Player Events Handler
Expand Down Expand Up @@ -2180,9 +2170,19 @@ local AimbotLoop; AimbotLoop = RunService[UISettings.RenderingMode]:Connect(func
ShowingESP = false
end
HandleTriggerBot()
if os.clock() - Clock >= 1 and Configuration.RandomAimPart and #Configuration.AimPartDropdownValues > 0 then
Fluent.Options.AimPart:SetValue(Configuration.AimPartDropdownValues[Random.new():NextInteger(1, #Configuration.AimPartDropdownValues)])
Clock = os.clock()
end
if not DEBUG and getfenv().Drawing then
VisualsHandler:VisualizeFoV()
TrackingHandler:VisualizeESP()
if Configuration.RainbowVisuals then
local Hue = os.clock() % Configuration.RainbowDelay / Configuration.RainbowDelay
Fluent.Options.FoVColour:SetValue({ Hue, 1, 1 })
Fluent.Options.NameESPOutlineColour:SetValue({ 1 - Hue, 1, 1 })
Fluent.Options.ESPColour:SetValue({ Hue, 1, 1 })
end
end
if Aiming then
local OldTarget = Target
Expand Down

0 comments on commit 268d642

Please sign in to comment.