-- Build A Fishing Empire REAL WORKING SCRIPT (Xeno) -- Finds actual game remotes automatically local player = game.Players.LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") print("🦈 Build A Fishing Empire - Auto Finder") -- AUTO FIND ALL REMOTES IN ReplicatedStorage spawn(function() while true do task.wait(2) -- Scan ALL ReplicatedStorage for RemoteEvents/RemoteFunctions for _, obj in pairs(ReplicatedStorage:GetDescendants()) do if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then pcall(function() obj:FireServer() print("🔥 FIRED:", obj:GetFullName()) end) end end -- Click ALL ClickDetectors for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("ClickDetector") then firesignal(obj.MouseClick) end end -- Spam ALL GUI buttons with "sell" or "fish" for _, gui in pairs(player.PlayerGui:GetDescendants()) do if gui:IsA("TextButton") or gui:IsA("ImageButton") then local name = gui.Name:lower() if name:find("sell") or name:find("fish") or name:find("collect") then firesignal(gui.MouseButton1Click) end end end end end) -- Tool Auto-Equip (for fishing rod) spawn(function() while true do task.wait(1) local char = player.Character if char then for _, tool in pairs(player.Backpack:GetChildren()) do if tool:IsA("Tool") and tool.Name:lower():find("rod") then tool.Parent = char end end end end end) print("✅ SCRIPT RUNNING - Watch for 'FIRED:' messages!") print("💡 You should see remotes being fired in console") -- INSERT Toggle game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.Insert then game:GetService("CoreGui"):Toggle() end end)