local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("OpScripts - Fruit Clicker", "DarkTheme") local Tab = Window:NewTab("Main") local Section = Tab:NewSection("Main") local Tab2 = Window:NewTab("Free Upgrades") local Section2 = Tab2:NewSection("Free Upgrades") Section:NewToggle("Autoclicker", "Autoclicker", function(state) active = state while active do for i = 1, 20 do task.spawn(function() game:GetService("ReplicatedStorage").ClickEvent:FireServer() end) end task.wait() end end) Section2:NewButton("Cursor", "Gives you one cursor upgrade", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerClick", 0, 1, "AmourPerClickUpgrageCount", 1) end) Section2:NewToggle("Spam Cursor", "Spams Cursor Upgrade", function(state) active = state while active do for i = 1, 20 do task.spawn(function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerClick", 0, 1, "AmourPerClickUpgrageCount", 1) end) end task.wait() end end) Section2:NewButton("Autoclicker", "Gives you Autoclicker upgrade", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerSecond", 0, 1, "AmourPerSecondUpgrageCount", 1) end) Section2:NewToggle("Spam Auto Clicker", "Spams Auto Clicker Upgrade", function(state) active = state while active do for i = 1, 20 do task.spawn(function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerSecond", 0, 1, "AmourPerSecondUpgrageCount", 1) end) end task.wait() end end) Section2:NewButton("A BUNCH of Per Click", "Gives you A BUNCH of Per Click", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerClick", 0, 1, "AmourPerClickUpgrageCount", 90000000) end) Section2:NewButton("A BUNCH of Per Second", "Gives you A BUNCH of Per Second", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerSecond", 0, 1, "AmourPerSecondUpgrageCount", 90000000) end) Section2:NewButton("A 10000x OF A BUNCH of Per Click", "Gives you A BUNCH of Per Click", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerClick", 0, 1, "AmourPerClickUpgrageCount", 900000000000) end) Section2:NewButton("A 10000x OF A BUNCH of Per Second", "Gives you A BUNCH of Per Second", function() game:GetService("ReplicatedStorage").UpgradeEvent:FireServer("AmourPerSecond", 0, 1, "AmourPerSecondUpgrageCount", 900000000000) end) Section2:NewButton("Rebirth", "rebirth", function() game:GetService("ReplicatedStorage").RebirthEvent:FireServer() end)