Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Usage:
- //Browse to your "Friends" page on ROBLOX
- //Open firebug, console window
- // Click "Show Command Editor" (red button in lower right corner)
- //Paste this script and click "Run" on the command editor menu
- //Now click all friends on the page that you want to remove
- //If you go to another page, you must click "Run" again on the command editor menu.
- var myUserId = $(".pager.next.friends-next").data("displayedUserId");
- $(".roblox-avatar-image a img").click(function(){
- $.ajax({
- url: "/friends/removefriend",
- type:"post",
- data: {
- displayedUserID: myUserId,
- invitationID: "undefined",
- pageNum: 1,
- targetUserID: $(this).closest("div").closest("a").data("userId"),
- view: "Friends"
- }
- });
- $(this).closest(".friend-container").remove();
- return false;
- })
Advertisement
Add Comment
Please, Sign In to add comment