This is a Discord selfbot written in JavaScript using discord.js-selfbot-v13. Use at your own risk. Selfbots are against Discord's Terms of Service and may lead to account termination.
- Node.js 18+
- A Discord user token (not a bot token)
- Optional: GROQ API key for LLM features
git clone https://github.com/krishnassh/selfbot
cd selfbot
npm install- Copy the example environment file and fill in values:
cp .env.example .env- Edit
.env:
- TOKEN="YOUR_DISCORD_TOKEN"
- GROQ_API_KEY="YOUR_GROQ_API_KEY" (optional, for
llm)
Keep .env out of Git. It is already listed in .gitignore.
npm start- Prefix defaults to
$. Example:$help,$ping. - Use
helpto discover commands and categories at runtime:$help,$help categories,$help <category>,$help <command>.
Commands are organized under instructions/ by category. Below is a complete list by folder.
- activity
- banall
- bump
- bumpbreak
- delete
- kickall
- nuke
- purgeme
- spam
- status
- b64dec
- b64enc
- bin
- encrypt
- hexdec
- hexenc
- unbin
- 8ball
- asciiart
- diceemoji
- flip
- joke
- quote
- randomfacts
- roast
- roll
- rpc
- llm
- add
- div
- mul
- random
- sub
- ascii
- camel
- charcount
- clap
- emojify
- expand
- kebab
- lower
- mock
- palindrome
- reverse
- rot13
- say
- shrink
- snake
- spoiler
- title
- upper
- uwu
- wordcount
- countdown
- now
- remindme
- timer
- unixtime
- utc
- avatar
- color
- help
- lmgtfy
- ping
- prefix
- setprefix
- choose
- compliment
- randompassword
- shuffle
- sort
- Lint:
npm run lint - Format:
npm run format