local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Poop A Brainrot Hub", "Ocean") game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Script Loaded", Text = "Press 'M' to Open/Close Menu", Duration = 5 }) local Main = Window:NewTab("Main Functions") local Section = Main:NewSection("Auto Farm") _G.autoPoop = false _G.autoSell = false Section:NewToggle("Auto Poop", "Automatically poops (Fast)", function(state) _G.autoPoop = state while _G.autoPoop do game:GetService("ReplicatedStorage").StartPoopMinigameServer:FireServer() game:GetService("ReplicatedStorage").PoopSuccessEvent:FireServer() task.wait(0.01) end end) Section:NewToggle("Auto Sell", "Automatically sells brainrots", function(state) _G.autoSell = state while _G.autoSell do game:GetService("ReplicatedStorage").SellBrainrotRequest:InvokeServer("all") task.wait(0.01) end end) local About = Window:NewTab("Credits") local AboutSection = About:NewSection("Prepared by AkifRzayev") AboutSection:NewLabel("Poop A Brainrot Special Script") Section:NewKeybind("Toggle Menu", "Press M to toggle", Enum.KeyCode.M, function() Library:ToggleUI() end)