local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Infinite Pizza Clicker", "DarkTheme") local Tab = Window:NewTab("Main") local Section = Tab:NewSection("Infinite Coins") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Remote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("DailyGift") local spamming = false task.spawn(function() while true do if spamming then Remote:FireServer() task.wait(0.01) else task.wait(0.5) end end end) Section:NewToggle("Infinite Coins", "Toggle to start/stop spamming", function(state) spamming = state end)