Advertisement
Technoguyfication

Roblox mass unfollow script

Mar 23rd, 2017
1,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // roblox unfollow script - unfollows all those hundreds of people you used to be friends with on roblox
  2. // technoguyfication 3/23/17 technoguyfication.com
  3. //
  4. // navigate to your roblox following list (https://www.roblox.com/users/XXXXX/friends#!/following)
  5. // run this in your inspector console
  6. // it will remove a bunch of your followers and reload the page, simply repaste and repeat
  7.  
  8.  
  9. [].forEach.call(document.getElementsByClassName('rbx-menu-item'), t => { if (t.getAttribute('data-toggle') != 'popover') return; t.click(); [].forEach.call(document.getElementsByClassName('friend-unfollow'), (b => { b.click(); }))}); location.reload();
  10.  
  11. // i know this script could be 100x more efficient. i just don't care.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement