Scripts Games Try Our Executor
Login Sign Up
Auto Fish Open source
Free
Game #86111605798689

Auto Fish Open source

#Open source#Star Fishing
Feb 14, 2026 121 52 lines 1.6 KB
admin 126 scripts
Lab
script.lua 52 lines
Raw
local players = game:GetService("Players")
local rs = game:GetService("ReplicatedStorage")
local player = players.LocalPlayer

local function galaxy()
    local char = player.Character
    if not char then return end
    local near = nil
    local dist = math.huge
    for _, v in workspace.Galaxies:GetChildren() do
        local d = (v:GetPivot().Position - char.HumanoidRootPart.Position).Magnitude
        if d < dist then
            dist = d
            near = v
        end
    end
    
    return near
end

local itemEvent = rs.Events.Global.ClientRecieveItems
itemEvent.OnClientEvent:Connect(function(p1, p2, p3, catchData, p5, waitData)
    if catchData then
        for idx, fishData in catchData do
            local fishId = fishData['id']
            if fishId then
                task.wait(waitData[idx] or 3)
                rs.Events.Global.ClientItemConfirm:FireServer(fishId)
            end
        end
    end
end)

while true do
    local char = player.Character
    if char then
        local rod = char:FindFirstChild("Rod")
        if rod then
            local targetGalaxy = galaxy()
            if targetGalaxy then
                local hrp = char.HumanoidRootPart
                local castPos = targetGalaxy:GetPivot().Position + Vector3.new(0, 5, 0)
                local castDir = (castPos - hrp.Position).Unit
                
                rs.Events.Global.Cast:FireServer(char.Humanoid, castPos, castDir, rod.Model.Nodes.RodTip.Attachment)
                task.wait(0.1)
                rs.Events.Global.WithdrawBobber:FireServer(char.Humanoid)
            end
        end
    end
    task.wait(0.3)
end
Description
Imported from ScriptBlox https://scriptblox.com/

Auto Fish
Comments 0
Loading comments...
Stats
121Views
0Likes
0Favorites
0Comments
Details
Status Working
Key System None
Mobile PC Only
TypeGeneral
CreatedFeb 14, 2026
Updated2d ago
How to Use
1 Copy the script above
2 Open your executor
3 Paste and execute
Need an executor?
Report

Found an issue? Let us know.

Copied!

Share Script

Report Script