A Discord selfbot client that allows you to join multiple voice channels through commands and have embeded auto-afk features.
- Join multiple voice channels at the same time with the
voice
command - Check Discord API latency with the
ping
command - Colorful console logging with the
Logs
utility - Freezing the group with the
freeze-group
command making it impossible to remove or add people to the group. - Clearing your messages with the
clear
command - Automatically answering to mentions.
Screen.Recording.2025-03-04.160852.mp4
To install dependencies:
bun install
Create a .env file in the root directory with your Discord token:
TOKEN=your_discord_token_here
To run the bot:
bun run start
&voice [link]
- Join a Discord voice channel using a channel link&ping
- Check your latency to the Discord API&clear [amount]
- Clear your messages in the current channel&freeze-group
- Freeze the group making it impossible to remove or add people to the group.
You can also run this project using Docker:
# Build the image
docker build -t discord-multi-voice .
# Run the container (replace with your Discord token)
docker run -e TOKEN=your_discord_token_here discord-multi-voice
This project uses Bun, a fast all-in-one JavaScript runtime.