https://github.com/systemvll/selfcord
A Discord selfbot client that allows you to join multiple voice channels through commands.
https://github.com/systemvll/selfcord
discord-exploits discord-group-lock discord-hack discord-multi-voice discord-tool multi-tools selfbot-for-discord tools
Last synced: about 1 month ago
JSON representation
A Discord selfbot client that allows you to join multiple voice channels through commands.
- Host: GitHub
- URL: https://github.com/systemvll/selfcord
- Owner: SystemVll
- License: mit
- Created: 2025-03-04T15:01:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-28T13:29:11.000Z (about 1 year ago)
- Last Synced: 2025-06-20T05:13:07.691Z (12 months ago)
- Topics: discord-exploits, discord-group-lock, discord-hack, discord-multi-voice, discord-tool, multi-tools, selfbot-for-discord, tools
- Language: TypeScript
- Homepage:
- Size: 14.6 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Selfcord
A Discord selfbot client that allows you to join multiple voice channels through commands and have
embeded auto-afk features.
## Features (User)
- [x] Join multiple voice channels at the same time with the `voice` command
- [x] Check Discord API latency with the `ping` command
- [x] Colorful console logging with the `Logs` utility
- [x] Freezing the group with the `freeze-group` command making it impossible to remove or add people to the group.
- [x] Clearing your messages with the `clear` command
- [ ] Automatically answering to mentions.
https://github.com/user-attachments/assets/29415551-890e-494e-afac-b16926c67505
## Installation
To install dependencies:
```bash
bun install
```
## Configuration
Create a .env file in the root directory with your Discord token:
```
TOKEN=your_discord_token_here
```
## Usage
To run the bot:
```bash
bun run start
```
### Available Commands
- `&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.
## Docker Support
You can also run this project using Docker:
```bash
# 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](https://bun.sh), a fast all-in-one JavaScript runtime.