您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove all of your friends on Roblox
// ==UserScript== // @name Roblox Friend Remover // @namespace https://spin.rip/ // @version 3000 // @description Remove all of your friends on Roblox // @author Spinfal // @match https://www.roblox.com/users/*/profile* // @icon https://www.google.com/s2/favicons?domain=roblox.com // @grant none // @license AGPL-3.0 License // @run-at document-start // ==/UserScript== (function() { 'use strict'; const params = new URLSearchParams(window.location.search); const rmf = params.get('rmf') === 'true'; // first‑pass: ask & reload if (!rmf) { setTimeout(() => { const userID = Roblox?.CurrentUser?.userId || prompt('Your Roblox user ID (must be yours):'); if (!userID) return alert('No Roblox user ID was available. Try reloading the page.'); if (!confirm('Remove all friends?')) return; sessionStorage.setItem("csrfToken", Roblox?.XsrfToken?.getToken()); params.set('rmf', 'true'); params.set('userId', userID); window.location.search = params.toString(); return; }, 3000); } // second‑pass: rmf=true -> we already reloaded, now fetch CSRF + headers and unfriend (async function() { 'use strict'; const userId = params.get('userId'); if (!userId) return; // 1. GET to grab response headers & friend list let resp; try { resp = await fetch( `https://friends.roblox.com/v1/users/${userId}/friends?sortOrder=Desc`, { method: 'GET', credentials: 'include' } ); } catch (e) { console.error('[Friend Remover] Error fetching friends:', e); return alert('Error fetching friends. See console.'); } // collect all response headers const responseHeaders = {}; resp.headers.forEach((v, k) => { responseHeaders[k] = v; }); // parse friend list from GET response let list; try { list = await resp.json(); } catch (e) { console.error('[Friend Remover] Error parsing friend list:', e); return alert('Error parsing friend list. See console.'); } // 2. check fresh CSRF token const csrfToken = sessionStorage.getItem("csrfToken"); if (!csrfToken) return alert('failed to get fresh csrf token. try refreshing the page.'); // merge captured headers + fresh CSRF const headers = { ...responseHeaders, 'x-csrf-token': csrfToken }; // 3. loop and unfriend for (const u of list.data) { fetch( `https://friends.roblox.com/v1/users/${u.id}/unfriend`, { method: 'POST', credentials: 'include', headers: headers } ).then(r => { if (!r.ok) console.warn('[Friend Remover] Failed to unfriend', u.id, r.statusText); }); } alert('Friend removal initiated. Check console for status.'); })(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址