Skip to content

Z-Dux/Discord-Selfbot-Guide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Discord-Selfbot-Guide

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.

Prerequisites

  • Install Node.js from here (Stable).
  • A code editor, preferably Visual Studio Code for begginers
  • A brain with enough logic.

Setup

Installing Node.js
  • Download the stable version of Node.js from here.

  • Install the program and check if it is installed by running node in the terminal.

  • Trouble Shooting

    • If you recieve an error namely 'node' is not recognised... then proceed to C:\Program Files\nodejs and check if node.exe exists.
    • 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
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
  • In a new folder, open command prompt
  • Run npm init and press enter for every option or edit it for your needs.
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

Creating a selfbot...

Getting your token

  • Method 1
    • Open Discord in browser and go to developer console via Ctrl+ Shift + I and then proceed to the Application Tab.
    • Press Ctrl + Shift + M to switcth the device dimension and then search token.
  • 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()

Creating first selfbot

  • 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);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages