local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Events = ReplicatedStorage:WaitForChild("Events")
local CatchEvent = Events:WaitForChild("CatchEvent")
local Player = game:GetService("Players").LocalPlayer
local function hideUI()
local ui = Player.PlayerGui:FindFirstChild("UI")
if ui then
local toHide = {"CastingFrame", "AutoCatchBar", "SliderMinigame", "GroundReelFrame", "FlyingReelFrame", "ScreenClick"}
for _, name in pairs(toHide) do
local frame = ui:FindFirstChild(name)
if frame then
frame.Visible = false
if not frame:GetAttribute("HiddenByExploit") then
frame:SetAttribute("HiddenByExploit", true)
frame:GetPropertyChangedSignal("Visible"):Connect(function()
frame.Visible = false
end)
end
end
end
end
end
hideUI()
local oldFireServer
oldFireServer = hookmetamethod(game, "__namecall", function(self, ...)
local args = {...}
local method = getnamecallmethod()
if self == CatchEvent and method == "FireServer" then
if args[1] == "CancelCatchV2" then return nil end
if args[1] == "CatchingV2" then
args[2] = 2
return oldFireServer(self, unpack(args))
end
end
return oldFireServer(self, ...)
end)
CatchEvent.OnClientEvent:Connect(function(event, data)
if event == "BiteNotification" then
local session = data.session
if not session then return end
CatchEvent:FireServer("ReeledV2", {
["sid"] = session.sid, ["nonce"] = session.nonce, ["seq"] = 1,
["groundDurationMs"] = 0, ["swatCount"] = 1, ["reason"] = "track"
})
CatchEvent:FireServer("Stage2ResultV2", {
["sid"] = session.sid, ["nonce"] = session.nonce, ["seq"] = 2,
["localSuccess"] = true, ["durationMs"] = 0, ["insideMs"] = 0,
["outsideMs"] = 0, ["holdTransitions"] = 0, ["holdTrace"] = {}
})
task.defer(function()
if Player.Character and Player.Character:FindFirstChild("Humanoid") then
Player.Character.Humanoid.WalkSpeed = 16
end
Events.CancelCatchBindable:Fire()
end)
end
end)
getgenv().AuraCatch = true
task.spawn(function()
print("[EXPLOIT] Aura Catch Iniciado. Aspirando bichos...")
while task.wait(0.2) do
if getgenv().AuraCatch then
CatchEvent:FireServer("CatchingV2", 2)
end
end
end)