Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function multiwear(list){
- var req = [];
- var cb = function(){
- if(req.length==list.length){
- console.log("Ready",req);
- for(var n in req){
- $.post("http://m.roblox.com/Catalog/WearOrRemoveItem",{wearing:true,userAssetId:req[n].uaid,__RequestVerificationToken:req[n].rvt});
- }
- }
- };
- for(var n in list){
- $.get("http://m.roblox.com/items/"+list[n]).success(function(r){
- var hold = $("<div>").html(r);
- req.push({rvt:hold.find("*[name='__RequestVerificationToken']").val(),uaid:hold.find("#userAssetId").val()});
- cb();
- });
- }
- }
- /*
- HOW TO USE WITH ROBLOX+:
- 1. Go to chrome://extensions
- 2. Check the 'Developer mode' box in the top right
- 3. Find ROBLOX+, and click background_page
- 4. Go to console, and paste everything above
- 5. Make sure you're wearing 2 hats
- 6. Paste this in the console, and press enter: multiwear([HAT_ID_1,HAT_ID_2]);
- 7. Check your character! If it didn't work, repeat from step 5.
- Don't have ROBLOX+?
- 1. Go to http://m.roblox.com/
- 2. Right click > Inspect Element > Console
- 3. Continue with step 4 from above
- EXAMPLE: multiwear([215719598,1272714]);
- */
- // 1Topcop (WebGL3D/Java3D)
Add Comment
Please, Sign In to add comment