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

Commit 268d642

Browse files
authored
Merge pull request #107 from ttwizz/dev
Release 1.9.1
2 parents c6877c3 + a125b9c commit 268d642

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

source.lua

+32-32
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
༺☆༻____________☾✧ ✩ ✧☽____________༺☆༻༺☆༻____________☾✧ ✩ ✧☽____________༺☆༻
1717
1818
✨Universal Aim Assist Framework✨
19-
Release 1.9
19+
Release 1.9.1
2020
2121
twix.cyou/pix
2222
twix.cyou/OpenAimbotV3rm
@@ -31,6 +31,8 @@
3131
3232
Wiki: https://moderka.org/Open-Aimbot
3333
34+
Trustpilot: https://www.trustpilot.com/review/moderka.org
35+
3436
•───────•°•❀•°•───────•୧‿̩͙ ˖︵ꕀ ⠀𓏶 ̣̣̥⠀ ꕀ︵˖ ̩͙‿୨•───────•°•❀•°•───────•]]
3537

3638

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

223225
Configuration.RainbowVisuals = ImportedConfiguration["RainbowVisuals"] or false
224-
Configuration.RainbowDelay = ImportedConfiguration["RainbowDelay"] or 0.5
226+
Configuration.RainbowDelay = ImportedConfiguration["RainbowDelay"] or 5
225227

226228

227229
--! Constants
@@ -253,6 +255,8 @@ end
253255
local Fluent = nil
254256
local ShowWarning = false
255257

258+
local Clock = os.clock()
259+
256260
local Aiming = false
257261
local Target = nil
258262
local Tween = nil
@@ -402,16 +406,6 @@ do
402406
Configuration.AimPart = Value
403407
end
404408
})
405-
task.spawn(function()
406-
while task.wait(1) do
407-
if not Fluent then
408-
break
409-
end
410-
if Configuration.RandomAimPart and #Configuration.AimPartDropdownValues > 0 then
411-
AimPartDropdown:SetValue(Configuration.AimPartDropdownValues[Random.new():NextInteger(1, #Configuration.AimPartDropdownValues)])
412-
end
413-
end
414-
end)
415409

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

993-
local FoVColourPicker = FoVSection:AddColorpicker("FoVColour", {
987+
FoVSection:AddColorpicker("FoVColour", {
994988
Title = "FoV Colour",
995989
Description = "Changes the FoV Colour",
996990
Default = Configuration.FoVColour,
@@ -1055,7 +1049,7 @@ do
10551049
end
10561050
})
10571051

1058-
local NameESPOutlineColourPicker = ESPSection:AddColorpicker("NameESPOutlineColour", {
1052+
ESPSection:AddColorpicker("NameESPOutlineColour", {
10591053
Title = "Name ESP Outline",
10601054
Description = "Changes the Name ESP Outline Colour",
10611055
Default = Configuration.NameESPOutlineColour,
@@ -1093,7 +1087,7 @@ do
10931087
end
10941088
})
10951089

1096-
local ESPColourPicker = ESPSection:AddColorpicker("ESPColour", {
1090+
ESPSection:AddColorpicker("ESPColour", {
10971091
Title = "ESP Colour",
10981092
Description = "Changes the ESP Colour",
10991093
Default = Configuration.ESPColour,
@@ -1113,27 +1107,13 @@ do
11131107
RainbowVisualsToggle:OnChanged(function(Value)
11141108
Configuration.RainbowVisuals = Value
11151109
end)
1116-
task.spawn(function()
1117-
while task.wait(Configuration.RainbowDelay) do
1118-
for Index = 1, 230 do
1119-
if not Fluent then
1120-
break
1121-
elseif Configuration.RainbowVisuals then
1122-
FoVColourPicker:SetValue({ Index / 230, 1, 1 })
1123-
NameESPOutlineColourPicker:SetValue({ (230 - Index) / 230, 1, 1 })
1124-
ESPColourPicker:SetValue({ Index / 230, 1, 1 })
1125-
end
1126-
task.wait(Configuration.RainbowDelay / 5)
1127-
end
1128-
end
1129-
end)
11301110

11311111
VisualsSection:AddSlider("RainbowDelay", {
11321112
Title = "Rainbow Delay",
11331113
Description = "Changes the Rainbow Delay",
11341114
Default = Configuration.RainbowDelay,
1135-
Min = 0.1,
1136-
Max = 1,
1115+
Min = 1,
1116+
Max = 10,
11371117
Rounding = 1,
11381118
Callback = function(Value)
11391119
Configuration.RainbowDelay = Value
@@ -1493,6 +1473,16 @@ do
14931473
}
14941474
}
14951475
})
1476+
else
1477+
Window:Dialog({
1478+
Title = "Open Aimbot 💫PREMIUM💫",
1479+
Content = "✨Upgrade to unlock all Options✨ – Contact @ttwiz_z via Discord to buy",
1480+
Buttons = {
1481+
{
1482+
Title = "Confirm"
1483+
}
1484+
}
1485+
})
14961486
end
14971487
end
14981488
end
@@ -2125,7 +2115,7 @@ function TrackingHandler:InitializePlayers()
21252115
end
21262116
end
21272117

2128-
task.spawn(TrackingHandler.InitializePlayers)
2118+
TrackingHandler:InitializePlayers()
21292119

21302120

21312121
--! Player Events Handler
@@ -2180,9 +2170,19 @@ local AimbotLoop; AimbotLoop = RunService[UISettings.RenderingMode]:Connect(func
21802170
ShowingESP = false
21812171
end
21822172
HandleTriggerBot()
2173+
if os.clock() - Clock >= 1 and Configuration.RandomAimPart and #Configuration.AimPartDropdownValues > 0 then
2174+
Fluent.Options.AimPart:SetValue(Configuration.AimPartDropdownValues[Random.new():NextInteger(1, #Configuration.AimPartDropdownValues)])
2175+
Clock = os.clock()
2176+
end
21832177
if not DEBUG and getfenv().Drawing then
21842178
VisualsHandler:VisualizeFoV()
21852179
TrackingHandler:VisualizeESP()
2180+
if Configuration.RainbowVisuals then
2181+
local Hue = os.clock() % Configuration.RainbowDelay / Configuration.RainbowDelay
2182+
Fluent.Options.FoVColour:SetValue({ Hue, 1, 1 })
2183+
Fluent.Options.NameESPOutlineColour:SetValue({ 1 - Hue, 1, 1 })
2184+
Fluent.Options.ESPColour:SetValue({ Hue, 1, 1 })
2185+
end
21862186
end
21872187
if Aiming then
21882188
local OldTarget = Target

0 commit comments

Comments
 (0)