Functions: AutoFish

Installation guide:
Copy the script from the button below.
Run any Injector (We recommend KRNL Injector)
Install it, insert the script and click execute
Enjoy it)
Thank you for using our website
Your script:
local plr = game.Players.LocalPlayer
local vu = game:GetService("VirtualUser")
_G.AutoFish = true -- set "true" to "false" to disable
-- EXAMPLE: _G.AutoFish = false
if _G.Connection then
_G.Connection:Disconnect()
_G.Connection = nil
end
function click()
vu:ClickButton1(Vector2.zero, workspace.CurrentCamera.CFrame)
end
if _G.AutoFish then
_G.Connection = plr.Character.ChildAdded:Connect(function(v)
if v.Name == "HE" and _G.AutoFish then
repeat
click()
task.wait()
until v.Parent ~= plr.Character
repeat
task.wait()
until plr.Character:FindFirstChild("Collected")
task.wait(2.5)
click()
end
end)
end