Advertisement
A_GUES

Roblox stop Item Not For Sale 2023

Jul 11th, 2023
1,791
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // replace PRODUCT_ID with actual product id
  2. var productID = "actual_product_id_here";
  3. fetch(`https://economy.roblox.com/v2/user-products/${productID}/purchase`,{
  4.       body: JSON.stringify({"expectedCurrency": 1,"expectedPrice": 1,"expectedSellerId": 1}),
  5.       method: "POST",
  6.       credentials: "include",
  7.       headers: {
  8.         "Content-Type": "application/json",
  9.         // ensure Roblox.XsrfToken.getToken() returns a valid token
  10.         "x-csrf-token": Roblox.XsrfToken.getToken()
  11.       }
  12. })
  13. .then(response => response.json())
  14. .then(data => console.log(data))
  15. .catch((error) => {
  16.   console.error('Error:', error);
  17. });
Advertisement
Comments
  • A_GUES
    1 year (edited)
    # text 0.21 KB | 0 0
    1. 👕Layered Clothing👕
    2. Step-by-Step Guide
    3.  
    4. 1.) Press CTRL + SHIFT + J.
    5. 2.) Insert the script.
    6. 3.) Replace the "PRODUCT_ID_HERE" with your desired product ID.
    7. 4.) Press ENTER.
    8. 5.) Refresh the page. Voila!
  • A_GUES
    1 year (edited)
    # text 0.00 KB | 0 0
    1. Lol
Add Comment
Please, Sign In to add comment
Advertisement