-- if u cant turn off toggle try click when ur rod not dropping bait local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))() local Window = Fluent:CreateWindow({ Title = "Made by Wpl0o0", SubTitle = "by dawid", TabWidth = 160, Size = UDim2.fromOffset(440, 320), Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely Theme = "Aqua", MinimizeKey = Enum.KeyCode.LeftControl -- Used when theres no MinimizeKeybind }) -- Fluent provides Lucide Icons, they are optional local Tabs = { Main = Window:AddTab({ Title = "Main", Icon = "" }), } local Main = Tabs.Main local Section = Main:AddSection("Main") local hugeReelbar = false local Toggle = Main:AddToggle("MyToggle", { Title = "Change Reel Bar", Description = "", Default = false, Callback = function(state) hugeReelbar = state end }) local AutoFishing = false local Toggle = Main:AddToggle("MyToggle", { Title = "Auto Fish", Description = "", Default = false, Callback = function(state) AutoFishing = state end }) local Vim = game:GetService("VirtualInputManager") local rs = game:GetService("RunService") local function ClickMouse() Vim:SendMouseButtonEvent(0, 0, 0, true, game, 0) task.wait() Vim:SendMouseButtonEvent(0, 0, 0, false, game, 0) end rs.RenderStepped:Connect(function () if hugeReelbar then game:GetService("Players").LocalPlayer.PlayerGui.Fishing.Container.ReelFrame.Target.Size = UDim2.new(500,0,1,0) end if AutoFishing then local char = game.Players.LocalPlayer.Character if char:FindFirstChildWhichIsA("Tool") then if not workspace:FindFirstChild("Bait") then local rod = char:FindFirstChildWhichIsA("Tool") rod:Activate() else ClickMouse() end else print("Pls Equip rod") end end end)