local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))() local Window = Library:NewWindow("supermarket") local Market = Window:NewSection("main") Market:CreateTextbox("earn cash", function(text) game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gold"):WaitForChild("ChangeGoldRF"):InvokeServer("ChangeGold",tonumber(text),false) end) Market:CreateButton("buy all licenses", function() for i = 1,5 do game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Data"):WaitForChild("BuyLicenseRE"):FireServer({HideId="rbxassetid://0",Name="License_" .. tostring(i),Price=0,Action="BuyLicense",PlayerLv=0,ImgId="rbxassetid://0"},"BuyLicense") end end)