Advertisement
RyanDolan123

Untitled

Jan 19th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. console.log("work pls");
  2.  
  3. function a(){
  4.     document.getElementsByClassName("topCheckbox roblox-archiveAll")[0].click();
  5.     setTimeout(b,5);
  6. }
  7.  
  8. function b(){
  9.     document.getElementsByClassName("roblox-markAsUnreadInbox btn-message btn-control btn-control-large")[0].click();
  10.     setTimeout(c,350);
  11. }
  12.  
  13. function c(){
  14.     document.getElementsByClassName("pager next")[0].click();
  15.     setTimeout(a,350);
  16. }
  17.  
  18.  
  19.  
  20. a();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement