Advertisement
StefanBashkir

ROBLOX Group Rank Change

Jun 14th, 2017
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // To find these values, inspect-element on the rank drop downs.
  2. // The IDs you need will be in the <select> element. Find the <option> elements.
  3. // The value attribute of the <option> elements hold the rank IDs
  4. var rankIDToChangeUsersFrom = 21285192;
  5. var rankIDToChangeUsersTo = 2960472;
  6.  
  7. // First, we'll set the page to only show members of the rank to change from.
  8.  
  9. var rankFilterSelect = $("#RoleSetSearchId");
  10. var filterSearchButton = $("#MemberSearchButton");
  11.  
  12. rankFilterSelect.val(rankIDToChangeUsersFrom).trigger("change");
  13. filterSearchButton.click();
  14.  
  15. setInterval(function(){
  16.     $(".GroupMember > select").val(rankIDToChangeUsersTo).trigger("change");
  17.     filterSearchButton.click();
  18. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement