Arcane Reborn Script | AUTO FISH

Created by magnetwashere

Features:

  • AUTO FISH
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