Advertisement
CatGray

Wnyevrrins

May 27th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. local products = {}
  2. local page = 1
  3. repeat
  4. local response = game:HttpGet("https://apis.roblox.com/developer-products/v1/developer-products/list?universeId=" .. game.GameId .. "&page=" .. page)
  5. local data = game:GetService("HttpService"):JSONDecode(response)
  6. for _, product in ipairs(data.DeveloperProducts) do
  7. table.insert(products, product.ProductId)
  8. end
  9. page = page + 1
  10. until data.FinalPage
  11.  
  12. local stealth_call = (syn and syn.stealth_call) or (fluxus and fluxus.stealth_call) or (krnl and krnl.stealth_call)
  13. local player = game.Players.LocalPlayer
  14. if stealth_call then
  15. stealth_call(function()
  16. for _, productId in ipairs(products) do
  17. game:GetService("MarketplaceService"):SignalPromptProductPurchaseFinished(player.UserId, productId, true)
  18. end
  19. end)
  20. else
  21. for _, productId in ipairs(products) do
  22. game:GetService("MarketplaceService"):SignalPromptProductPurchaseFinished(player.UserId, productId, true)
  23. end
  24. end
  25.  
  26. -- [[ Skiddadles From Wyvern Fired all Dev Products]] --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement