NasuiAlexandra

New Glitch Without Mobile

Jan 16th, 2021 (edited)
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.67 KB | None | 0 0
  1. var productIds = [
  2. "51119013", // Slime Cape
  3. "51119443", // Slime Sunglasses
  4. "45038518", // Festive Winter Shades
  5. "54591332", // Yondu's Fin
  6. "37990657" // Dog Man Virtual Book
  7. ]
  8.  
  9.  
  10. productIds.forEach(function(productId) {
  11.  
  12.    $.ajax(https://economy.roblox.com/v1/purchases/products/"+productId, {
  13.      method: "POST",
  14.      headers: {"X-CSRF-TOKEN": Roblox.XsrfToken.getToken()},
  15.      dataType: "json",
  16.      data: {
  17.          expectedCurrency: 0,
  18.          expectedPrice: 0,
  19.          expectedSellerId: 1
  20.      },
  21.      success: function(data) {
  22.          if (data.purchased) {
  23.              console.log("Bought", data.assetName)
  24.          }
  25.  
  26.       }
  27.  
  28.    })
  29.  
  30. })
Add Comment
Please, Sign In to add comment