Home ยป Roblox Scripts ยป 4 Ice Fishing Simulator Scripts: Auto-Fish & Instant Catch

4 Ice Fishing Simulator Scripts: Auto-Fish & Instant Catch

Photo of author
Published on

If you want to make your Ice Fishing Simulator experience better, these scripts will help you farm money, catch fish automatically, and complete obbies easily. Below are the best scripts available for the game.

01 Money Farm [UPD] Ice Fishing Simulator 🐟

FeatureDescription
Money FarmHelps you earn in-game currency automatically.
Anti AFKPrevents disconnection due to inactivity.

Script:

--First Script
for i,v in pairs(workspace.CaveObby.Stages:GetDescendants()) do
    if v.Name == "Lava" or  v.Name == "KillPart" or  v.Name == "SpikeLog" then
        v:Destroy()
    end
end

--Second Script
local TweenService = game:GetService("TweenService")
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")

local stages = {
    workspace.CaveObby.Stages["1"].Spawn,
    workspace.CaveObby.Stages["2"].Checkpoint,
    workspace.CaveObby.Stages["3"].Checkpoint,
    workspace.CaveObby.Stages["4"].Checkpoint,
}

local function tweenToPosition(position)
    local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)
    local goal = {CFrame = position.CFrame}

    local tween = TweenService:Create(humanoidRootPart, tweenInfo, goal)
    tween:Play()
    tween.Completed:Wait()
end

while true do
    for _, stage in ipairs(stages) do
        if stage then
            tweenToPosition(stage)
            task.wait(1)
        end
    end
end

02 Ice Fishing Simulator: Auto Fish, Auto Farm

FeatureDescription
Auto FishCatches fish automatically at high speed.
Auto FarmCollects money, experience, and other items automatically.

Script:

loadstring(game:HttpGet("https://raw.githubusercontent.com/ProjectpopCat/ywxoscripts/main/IceFishingSimulator.lua"))()

03 Ice Fishing Simulator: Auto Farm

FeatureDescription
Auto FarmAutomatically gathers money, experience, and resources.

Script:

loadstring(game:HttpGet("https://raw.githubusercontent.com/ToraScript/Script/main/HorseValley"))()

04 Ice Fishing Simulator: Auto Farm, Auto Obby

FeatureDescription
Auto FarmCollects game resources automatically.
Auto ObbyCompletes obby levels for rewards.

Script:

--First Script , EXECUTE THIS TWICE THEN USE THE 2ND SCRIPT
for i,v in pairs(workspace.CaveObby.Stages:GetDescendants()) do
    if v.Name == "Lava" or  v.Name == "KillPart" or  v.Name == "SpikeLog" then
        v:Destroy()
    end
end

--Second Script , USE THIS AFTER EXECUTING FIRST SCRIPT
local TweenService = game:GetService("TweenService")
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")

local stages = {
    workspace.CaveObby.Stages["1"].Spawn,
    workspace.CaveObby.Stages["2"].Checkpoint,
    workspace.CaveObby.Stages["3"].Checkpoint,
    workspace.CaveObby.Stages["4"].Checkpoint,
}

local function tweenToPosition(position)
    local tweenInfo = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut)
    local goal = {CFrame = position.CFrame}

    local tween = TweenService:Create(humanoidRootPart, tweenInfo, goal)
    tween:Play()
    tween.Completed:Wait()
end

while true do
    for _, stage in ipairs(stages) do
        if stage then
            tweenToPosition(stage)
            task.wait(1)
        end
    end
end

How to Use the Script

  1. Copy the script you want to use.
  2. Open the Ice Fishing Simulator game on Roblox.
  3. Use a script executor like KRNL or Synapse X.
  4. Paste the script into the executor.
  5. Run the script and enjoy the automation.

What Are the Benefits of Using These Scripts?

Using these scripts can save you a lot of time. Instead of manually fishing or farming for resources, the scripts handle everything automatically. This means you can earn money, level up, and complete obbies without much effort. The Auto Fish feature catches fish quickly, while Auto Farm helps collect valuable resources. Additionally, the Anti AFK feature ensures that you don’t get kicked from the game.

Leave a Comment