Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var productIds = [
- "51119013", // Slime Cape
- "51119443", // Slime Sunglasses
- "45038518", // Festive Winter Shades
- "54591332", // Yondu's Fin
- "37990657" // Dog Man Virtual Book
- ]
- productIds.forEach(function(productId) {
- $.ajax(https://economy.roblox.com/v1/purchases/products/"+productId, {
- method: "POST",
- headers: {"X-CSRF-TOKEN": Roblox.XsrfToken.getToken()},
- dataType: "json",
- data: {
- expectedCurrency: 0,
- expectedPrice: 0,
- expectedSellerId: 1
- },
- success: function(data) {
- if (data.purchased) {
- console.log("Bought", data.assetName)
- }
- }
- })
- })
Add Comment
Please, Sign In to add comment