Advertisement
A_GUES
Feb 26th, 2024
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. edit:
  2. "let productId = "your_product_id"; // replace with your actual product id
  3.  
  4. fetch(`https://economy.roblox.com/v2/user-products/${productId}/purchase`, {
  5. body: JSON.stringify({
  6. "expectedCurrency": 1,
  7. "expectedPrice": 1,
  8. "expectedSellerId": 1
  9. }),
  10. method: "POST",
  11. credentials: "include",
  12. headers: {
  13. "Content-Type": "application/json",
  14. "x-csrf-token": Roblox.XsrfToken.getToken()
  15. }
  16. })
  17. "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement