Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
- 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(){
- 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',
- data: '{"targetUserID":"' + friendId + '"}',
- headers: { 'X-CSRF-TOKEN': Roblox.XsrfToken.getToken() },
- success: unfriend,
- contentType: "application/json;charset=UTF-8",
- })
- }
- };
- unfriend();
- ---------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement