This guide has been written for Discord users interested in enhancing their experience with self-bots, which can automate various tasks and interactions within the platform.
- This guide primarily covers the usage of Node.js & discord.js-selfbot-v13 .
- Install Node.js from here (Stable).
- A code editor, preferably Visual Studio Code for begginers
- A brain with enough logic.
Installing Node.js
-
Download the stable version of Node.js from here.
-
Install the program and check if it is installed by running
nodein the terminal. -
Trouble Shooting
- If you recieve an error namely
'node' is not recognised...then proceed toC:\Program Files\nodejsand check ifnode.exeexists. - If it does, then copy the path (
C:\Program Files\nodejs\node.exe) and then place it in System environment variables > Path - If it does not, then it means Node.js was not installed or was installed on any other folder... Fix it
- If you recieve an error namely
Installing Visual Studio Code
- Install the latest version of Visual Studio Code .
- Make sure to check Add to Path during the installation!
Initiating New Project
Starting up
- Run `npm install discord.js-selfbot-v13@latest` to install the Selfbotting module - Either run `code .` or open the folder via Visual Studio code you installed earlier- Method 1
- Open Discord in browser and go to developer console via
Ctrl+ Shift + Iand then proceed to the Application Tab. - Press
Ctrl + Shift + Mto switcth the device dimension and then searchtoken.
- Open Discord in browser and go to developer console via
- Method 2
Run the following code after opening developer console via
Ctrl + Shift + I(webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]),m).find(m=>m?.exports?.default?.getToken!==void 0).exports.default.getToken()
- Starting up...
const TOKEN = ``; const { Client } = require('discord.js-selfbot-v13'); const client = new Client(); client.on("ready", async() => { console.log(`Connected as ${client.user.tag}`) }) client.login(TOKEN);

