-- [[
-- SorexEZ\01 \ Void Drop Edition (Fixed & Upgraded)
-- ]]
local teamCheck = false
local aimbotEnabled = true
local espEnabled = true
local currentTarget = nil
local aimSmoothness = 0.2
local aimKey = [Link].Q
local menuVisible = true
local killGrab = false
local superThrow = false
local grabTargetMode = "Disabled"
local grabRadius = 0
local antiGrab = false
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local Camera = [Link]
local LocalPlayer = [Link]
if not LocalPlayer then
Players:GetPropertyChangedSignal("LocalPlayer"):Wait()
LocalPlayer = [Link]
end
local highlightedPlayers = {}
local isBinding = false
local function createHighlight(player)
local function setupHighlight(character)
if character:FindFirstChild("HumanoidRootPart") then
if character:FindFirstChild("SorexESP") then
[Link]:Destroy() end
local highlight = [Link]("Highlight")
[Link] = "SorexESP"
[Link] = character
[Link] = [Link](255, 255, 255)
[Link] = 0.6
[Link] = [Link](0, 0, 0)
[Link] = espEnabled
[Link] = character
highlightedPlayers[player] = highlight
end
end
if [Link] then setupHighlight([Link]) end
[Link]:Connect(setupHighlight)
end
[Link]:Connect(function()
for _, player in pairs(Players:GetPlayers()) do
if player ~= LocalPlayer then
if espEnabled and [Link] then
if not highlightedPlayers[player] then
createHighlight(player)
else
highlightedPlayers[player].Enabled = true
end
elseif highlightedPlayers[player] then
highlightedPlayers[player].Enabled = false
end
end
end
end)
[Link]:Connect(function()
if not aimbotEnabled then
currentTarget = nil
return
end
if UserInputService:IsKeyDown(aimKey) then
if not currentTarget or not [Link] or not
[Link]:FindFirstChild("Head") then
local shortestDistance = [Link]
for _, player in pairs(Players:GetPlayers()) do
if player ~= LocalPlayer and [Link] and
[Link]:FindFirstChild("Head") then
local dist = ([Link] -
[Link]).Magnitude
if dist < shortestDistance then
currentTarget = player
shortestDistance = dist
end
end
end
end
if currentTarget and [Link] and
[Link]:FindFirstChild("Head") then
[Link] = [Link]:Lerp([Link]([Link],
[Link]), aimSmoothness)
end
else
currentTarget = nil
end
end)
local function createGUI()
local targetParent = nil
pcall(function() targetParent = game:GetService("CoreGui") end)
if not targetParent then targetParent = LocalPlayer:WaitForChild("PlayerGui")
end
if targetParent:FindFirstChild("SorexEZ_Monochrome_GUI") then
targetParent.SorexEZ_Monochrome_GUI:Destroy() end
local ScreenGui = [Link]("ScreenGui", targetParent)
[Link] = "SorexEZ_Monochrome_GUI"
[Link] = false
local MainFrame = [Link]("CanvasGroup", ScreenGui)
[Link] = [Link](0, 560, 0, 390)
[Link] = [Link](0.5, -280, 0.4, -195)
MainFrame.BackgroundColor3 = [Link](16, 16, 16)
[Link] = 0
[Link] = true
[Link]("UICorner", MainFrame).CornerRadius = [Link](0, 8)
local MainStroke = [Link]("UIStroke", MainFrame)
[Link] = [Link](60, 60, 60)
local Header = [Link]("Frame", MainFrame)
[Link] = [Link](1, 0, 0, 40)
Header.BackgroundColor3 = [Link](24, 24, 24)
[Link] = 5
local Title = [Link]("TextLabel", Header)
[Link] = [Link](1, -20, 1, 0)
[Link] = [Link](0, 15, 0, 0)
[Link] = 1
[Link] = "SorexEZ\\01 \\ Void Drop Edition"
Title.TextColor3 = [Link](255, 255, 255)
[Link] = 14
[Link] = [Link]
[Link] = [Link]
[Link] = 6
local NavContainer = [Link]("Frame", MainFrame)
[Link] = [Link](0, 130, 1, -41)
[Link] = [Link](0, 0, 0, 41)
NavContainer.BackgroundColor3 = [Link](20, 20, 20)
[Link] = 5
local ContentContainer = [Link]("Frame", MainFrame)
[Link] = [Link](1, -150, 1, -60)
[Link] = [Link](0, 140, 0, 50)
[Link] = 1
[Link] = 5
local dragging, dragInput, dragStart, startPos
[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 then
dragging = true dragStart = [Link] startPos =
[Link]
[Link]:Connect(function() if [Link] ==
[Link] then dragging = false end end)
end
end)
[Link]:Connect(function(input)
if dragging and [Link] == [Link]
then
local delta = [Link] - dragStart
[Link] = [Link]([Link], [Link] +
delta.X, [Link], [Link] + delta.Y)
end
end)
local Pages = {}
local Buttons = {}
local function createPage(name)
local page = [Link]("ScrollingFrame", ContentContainer)
[Link] = [Link](1, 0, 1, 0)
[Link] = 1
[Link] = false
[Link] = 5
[Link] = [Link](0, 0, 0, 0)
[Link] = 3
local layout = [Link]("UIListLayout", page)
[Link] = [Link]
[Link] = [Link](0, 6)
layout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
[Link] = [Link](0, 0, 0, [Link].Y + 10)
end)
Pages[name] = page
return page
end
local function createCheckbox(parent, text, default, callback)
local container = [Link]("Frame", parent)
[Link] = [Link](1, -5, 0, 38)
container.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 5
[Link]("UICorner", container).CornerRadius = [Link](0, 6)
local label = [Link]("TextLabel", container)
[Link] = [Link](1, -50, 1, 0)
[Link] = [Link](0, 12, 0, 0)
[Link] = 1
[Link] = text
label.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 14
[Link] = [Link]
[Link] = 6
local box = [Link]("TextButton", container)
[Link] = [Link](0, 20, 0, 20)
[Link] = [Link](1, -32, 0.5, -10)
box.BackgroundColor3 = default and [Link](255, 255, 255) or
[Link](45, 45, 45)
[Link] = default and "✓" or ""
box.TextColor3 = [Link](0, 0, 0)
[Link] = [Link]
[Link] = 14
[Link] = 6
[Link]("UICorner", box).CornerRadius = [Link](0, 4)
local state = default
box.MouseButton1Click:Connect(function()
state = not state
[Link] = state and "✓" or ""
box.BackgroundColor3 = state and [Link](255, 255, 255) or
[Link](45, 45, 45)
callback(state)
end)
end
local function createKeybindButton(parent, text, defaultKey, callback)
local container = [Link]("Frame", parent)
[Link] = [Link](1, -5, 0, 38)
container.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 5
[Link]("UICorner", container).CornerRadius = [Link](0, 6)
local label = [Link]("TextLabel", container)
[Link] = [Link](1, -120, 1, 0)
[Link] = [Link](0, 12, 0, 0)
[Link] = 1
[Link] = text
label.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 14
[Link] = [Link]
[Link] = 6
local bindBtn = [Link]("TextButton", container)
[Link] = [Link](0, 100, 0, 24)
[Link] = [Link](1, -112, 0.5, -12)
bindBtn.BackgroundColor3 = [Link](45, 45, 45)
[Link] = [Link]
bindBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 12
[Link] = 6
[Link]("UICorner", bindBtn).CornerRadius = [Link](0, 4)
bindBtn.MouseButton1Click:Connect(function()
if isBinding then return end
isBinding = true
[Link] = "..."
local connection
connection = [Link]:Connect(function(input, gpe)
if [Link] == [Link] then
connection:Disconnect()
aimKey = [Link]
[Link] = [Link]
isBinding = false
end
end)
end)
end
local mainPage = createPage("Main")
local aimbotPage = createPage("AimBots")
local AvatarImage = [Link]("ImageLabel", mainPage)
[Link] = [Link](0, 70, 0, 70)
[Link] = [Link](0.5, -35, 0, 10)
AvatarImage.BackgroundColor3 = [Link](25, 25, 25)
[Link] = 6
[Link]("UICorner", AvatarImage).CornerRadius = [Link](1, 0)
[Link]("UIStroke", AvatarImage).Color = [Link](80, 80, 80)
pcall(function()
local userId = [Link]
local thumbType = [Link]
local thumbSize = [Link].Size100x100
local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType,
thumbSize)
[Link] = content
end)
local infoLabel = [Link]("TextLabel", mainPage)
[Link] = [Link](1, 0, 0, 200)
[Link] = [Link](0, 0, 0, 90)
[Link] = 1
[Link] = "Разработчик: Kirill\nРежим: Only Aim & ESP\nСтиль: Чистый
Черный\n\nKey = Active ✅\n\n✨ Спасибо, что используете наш софт! ✨\nПриятного
пользования и легких побед! 🍀"
infoLabel.TextColor3 = [Link](255, 255, 255)
[Link] = 14
[Link] = [Link]
[Link] = 6
createCheckbox(aimbotPage, "Включить Аимбот", aimbotEnabled, function(v)
aimbotEnabled = v end)
createKeybindButton(aimbotPage, "Клавиша Аимбота (Hold)", aimKey, function(k)
aimKey = k end)
createCheckbox(aimbotPage, "Включить ESP Визеалы", espEnabled, function(v)
espEnabled = v end)
local function showPage(name)
for pageName, pageFrame in pairs(Pages) do [Link] = (pageName ==
name) end
for btnName, btnEl in pairs(Buttons) do
local isCurrent = (btnName == name)
btnEl.BackgroundColor3 = isCurrent and [Link](50, 50, 50) or
[Link](28, 28, 28)
end
end
local function createNavButton(name, positionY)
local btn = [Link]("TextButton", NavContainer)
[Link] = [Link](1, -12, 0, 32)
[Link] = [Link](0, 6, 0, positionY)
btn.BackgroundColor3 = [Link](28, 28, 28)
[Link] = name
btn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 14
[Link] = 7
[Link]("UICorner", btn).CornerRadius = [Link](0, 4)
btn.MouseButton1Click:Connect(function() showPage(name) end)
Buttons[name] = btn
end
createNavButton("Main", 10)
createNavButton("AimBots", 48)
showPage("Main")
[Link]:Connect(function(input, gpe)
if [Link] == [Link] and not gpe then
menuVisible = not menuVisible
[Link] = menuVisible
end
end)
end
createGUI()