local kavoUi = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local window = kavoUi.CreateLib("Pop it trading script by Smartgoby2013","DarkTheme")
 
---Tabs
 
local Tab1 = window:NewTab("Buy")
local Tab1Section = Tab1:NewSection("Buy hello egg")
local Tab2 = window:NewTab("Auto Buy")
local Tab2Section = Tab2:NewSection("auto buy")
local Tab3 = window:NewTab("Credits")
local Tab3Section = Tab3:NewSection("Made By Smartgoby2013")
local Tab3Section = Tab3:NewSection("????")
 
---Buttons
 
Tab1Section:NewButton("Buy Hello Scary","ButtonInfo",function()
local args = {
    [1] = "Hello Scary"
}
 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
end) 
 
Tab1Section:NewButton("Buy Hello Snow", "ButtonInfo",function() 
local args = {
    [1] = "Hello Snow"
}
 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
end) 
 
Tab1Section:NewButton("Buy Hellow Catty", "ButtonInfo", function() 
local args = {
    [1] = "Hellow Catty"
}
 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args))
end) 
 
Tab2Section:NewToggle("auto buy Hello Scary", "auto buys Hello Scary", function(state) if state then _G.on = true while _G.on do wait() local args = { [1] = "Hello Scary" } 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args)) end else _G.on = false end end)
 
Tab2Section:NewToggle("auto buy Hello Snow", "auto buys Hello Snow", function(state) if state then _G.on = true while _G.on do wait() local args = { [1] = "Hello Snow" } 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args)) end else _G.on = false end end)
 
Tab2Section:NewToggle("auto buy Hellow Catty", "auto buys Hellow Catty", function(state) if state then _G.on = true while _G.on do wait() local args = { [1] = "Hellow Catty" } 
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemCash:FireServer(unpack(args)) end else _G.on = false end end)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: