local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("OpScripts - Monke playground", "DarkTheme") local tab = window:NewTab("Main") local section = tab:NewSection("Main") section:NewButton("Spawn lucy", "Spawns lucy (target you)", function() game:GetService("ReplicatedStorage").GenerateLucy:FireServer() end) section:NewToggle("Spawn lucy Spam", "Spawns lucy Spam (target you)", function(state) local active = state while active do game:GetService("ReplicatedStorage").GenerateLucy:FireServer() task.wait(0.1) end end) section:NewToggle("Super spam lucy", "Super spam lucy (target you)", function(state) local active = state while active do for i = 1, 10000 do game.ReplicatedStorage.GenerateLucy:FireServer() end task.wait(0.1) end end) section:NewButton("Spawn lucy x1m", "Spams lucy 1million times. (target you)", function() for i = 1, 1000000 do game.ReplicatedStorage.GenerateLucy:FireServer() end end) section:NewButton("Give teddy", "Gives you teddy bear", function() game:GetService("ReplicatedStorage").GiveTeddy:FireServer() end)