local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Fart In A Jar 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.autoFart = false _G.autoSell = false Section:NewToggle("Auto Fart", "Automatically farts (Fast)", function(state) _G.autoFart = state while _G.autoFart do game:GetService("ReplicatedStorage").Remotes.Fart_Caught:FireServer(9.9999999999999999) task.wait(0.01) end end) Section:NewToggle("Auto Sell", "Automatically sells jars", function(state) _G.autoSell = state while _G.autoSell do game:GetService("ReplicatedStorage").Remotes.Fart_ShopRequest:InvokeServer("sellAll") task.wait(0.01) end end) local About = Window:NewTab("Credits") local AboutSection = About:NewSection("Prepared by AkifRzayev") AboutSection:NewLabel("Fart In A Jar Special Script") Section:NewKeybind("Toggle Menu", "Press M to toggle", Enum.KeyCode.M, function() Library:ToggleUI() end)