how to mass unfriend roblox with inspect element Unfriending All Friends On ROBLOX Script! ============================ Steps For The Scripts To Work ----------------------------- 1.Right click on Mouse or Touch Pad [Depends if your on a laptop, or a computer] 2.Click "Inspect Element" or Ctrl + Shift + I 3.Click On The "Console" Tab 4.Paste The Script There ============================= Tip : If it doesn't work, refresh the page and do the same thing how to mass unfriend roblox with inspect element How to get it for free? how to mass unfriend roblox with inspect element Tip 2 : It takes a whole page of friends, if not paste the script again Tip 3 : if you want to take all of your friends away, paste the script in each page of friends [e.g. 7 pages of friends = 7 times script will be pasted] Tip 4 : Make sure to write click on the friends page! ============================= The Script : ------------ var current = 0 var unfriend = function(){ how to mass unfriend roblox with inspect element PasteShr how to mass unfriend roblox with inspect element if(current >= 16){ $('.pager-next').children().click() children = 0 setTimeout(unfriend, 4000) }else{ var friendId = $('.avatar-card-caption').eq(current).children().attr('id') current++ $.ajax({ url: '/api/friends/removefriend', type: 'post', how to mass unfriend roblox with inspect element PasteShr how to mass unfriend roblox with inspect element data: '{"targetUserID":"' + friendId + '"}', headers: { 'X-CSRF-TOKEN': Roblox.XsrfToken.getToken() }, success: unfriend, contentType: "application/json;charset=UTF-8", }) } }; unfriend(); how to mass unfriend roblox with inspect element PasteShr how to mass unfriend roblox with inspect element --------------------------------- how to mass unfriend roblox with inspect element