local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Poop Legends 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.autoSell = false _G.autoDoor = false _G.autoPoop = false Section:NewToggle("Auto Poop", "Automatically poops", function(state) _G.autoPoop = state while _G.autoPoop do game:GetService("ReplicatedStorage").Remotes.RequestPoop:FireServer() task.wait(0.01) end end) Section:NewToggle("Auto Door", "Automatically opens potty", function(state) _G.autoDoor = state while _G.autoDoor do game:GetService("ReplicatedStorage").Remotes.PottyFunction:InvokeServer() task.wait(0.01) end end) Section:NewToggle("Auto Sell", "Automatically sells inventory", function(state) _G.autoSell = state while _G.autoSell do game:GetService("ReplicatedStorage").Remotes.SellRemote:InvokeServer("SellInventory") task.wait(0.01) end end) local About = Window:NewTab("Credits") local AboutSection = About:NewSection("Prepared by AkifRzayev") AboutSection:NewLabel("Poop Legends Special Script") Section:NewKeybind("Toggle Menu", "Press M to toggle", Enum.KeyCode.M, function() Library:ToggleUI() end)