QendrimGraphics

Wear 4 & 5 Hats Glitch :D

Mar 26th, 2015
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | None | 0 0
  1. function multiwear(list){
  2.     var req = [];
  3.     var cb = function(){
  4.         if(req.length==list.length){
  5.             console.log("Ready",req);
  6.             for(var n in req){
  7.                 $.post("http://m.roblox.com/Catalog/WearOrRemoveItem",{wearing:true,userAssetId:req[n].uaid,__RequestVerificationToken:req[n].rvt});
  8.             }
  9.         }
  10.     };
  11.     for(var n in list){
  12.         $.get("http://m.roblox.com/items/"+list[n]).success(function(r){
  13.             var hold = $("<div>").html(r);
  14.             req.push({rvt:hold.find("*[name='__RequestVerificationToken']").val(),uaid:hold.find("#userAssetId").val()});
  15.             cb();
  16.         });
  17.     }
  18. }
  19.  
  20. /*
  21. HOW TO USE WITH ROBLOX+:
  22. 1. Go to chrome://extensions
  23. 2. Check the 'Developer mode' box in the top right
  24. 3. Find ROBLOX+, and click background_page
  25. 4. Go to console, and paste everything above
  26. 5. Make sure you're wearing 2 hats
  27. 6. Paste this in the console, and press enter: multiwear([HAT_ID_1,HAT_ID_2]);
  28. 7. Check your character! If it didn't work, repeat from step 5.
  29.  
  30. Don't have ROBLOX+?
  31. 1. Go to http://m.roblox.com/
  32. 2. Right click > Inspect Element > Console
  33. 3. Continue with step 4 from above
  34.  
  35. EXAMPLE: multiwear([215719598,1272714]);
  36. */
  37.  
  38.  
  39. // 1Topcop (WebGL3D/Java3D)
Add Comment
Please, Sign In to add comment