1. Open Discord in a browser.
2. Press F12 to Open Developer Tools (F12 or Ctrl+Shift+I on Windows/Linux, Cmd+Option+I on Mac).
3. Copy & paste the code below into the Developer Tools console & hit Enter.
4. Done 
Use at your own risk: Using this could result in your account being flagged, restricted, or banned.
2. Press F12 to Open Developer Tools (F12 or Ctrl+Shift+I on Windows/Linux, Cmd+Option+I on Mac).
3. Copy & paste the code below into the Developer Tools console & hit Enter.
JavaScript:
const req = webpackChunkdiscord_app.push([[Symbol()], {}, r => r]);
webpackChunkdiscord_app.pop();
const findModule = (...needles) => {
for (const id in req.m) {
const src = req.m[id]?.toString?.();
if (src && needles.every(s => src.includes(s))) {
try { return req(id); } catch {}
}
}
return null;
};
const http = Object.values(findModule("HTTPUtils") ?? {}).find(
m => ["get", "post", "del"].every(k => typeof m?.[k] === "function")
);
if (!http) {
console.error("HTTP module not found");
} else {
http.del({ url: "/hypesquad/online" }).catch?.(console.error);
}
Use at your own risk: Using this could result in your account being flagged, restricted, or banned.