local Eggs = {} local Library = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))() for i,v in pairs(game.Workspace.Eggs:GetChildren()) do table.insert(Eggs,v.Name) end local EggsTab = Library:CreateTab("Eggs", "This is where you Open Eggs.", true) local Choosen = "SpawnDefault" EggsTab:CreateDropDown("Choose Egg",Eggs,function(v) Choosen = v end) EggsTab:CreateButton("Open Egg",function(t) local args = { [1] = Choosen, [2] = -1 } game:GetService("ReplicatedStorage").Packages._Index:FindFirstChild("sleitnick_knit@1.4.3").knit.Services.EggShopService.RF.RequestBuyEggs:InvokeServer(unpack(args)) end) EggsTab:CreateToggle("Auto Open Eggs",function(t) while wait() do if not t then return end local args = { [1] = Choosen, [2] = -1 } game:GetService("ReplicatedStorage").Packages._Index:FindFirstChild("sleitnick_knit@1.4.3").knit.Services.EggShopService.RF.RequestBuyEggs:InvokeServer(unpack(args)) wait(5) end end)