Master the Discord AntiNuke Selfbot with these comprehensive user guides
Comprehensive guides to help you get the most out of the Discord AntiNuke Selfbot
The Discord AntiNuke Selfbot configuration is managed through the config/config.yaml
file. This guide explains each configuration option in detail and provides recommendations for optimal protection.
selfbot:
token: 'YOUR_DISCORD_TOKEN_HERE' # Your account token
server1_id: '111222333444555666' # First server to protect
server2_id: '222333444555666777' # Second server to protect (optional)
owner1_id: '123456789012345678' # Your Discord user ID
owner2_id: '234567890123456789' # Another owner ID (optional)
Option | Type | Description |
---|---|---|
token | String | Your Discord account token. This is required for the selfbot to function. |
server1_id | String | ID of the first server you want to protect. Must be a valid Discord server ID. |
server2_id | String | Optional second server to protect. You can leave this empty if you only need to protect one server. |
owner1_id | String | Your Discord user ID. The selfbot will send alerts to this user when security events occur. |
owner2_id | String | Optional second owner ID. You can add an alternative account or a trusted admin here. |
Important: Never share your Discord token with anyone or commit it to public repositories. It provides full access to your account!
antinuke_settings:
punishment: 'ban' # Options: 'ban', 'kick', or 'none'
auto_recovery: true # Automatically recover channels and roles
recover_channels: true # Recover deleted channels
recover_roles: true # Recover deleted roles
recovery_delay: 1500 # Milliseconds to wait between recoveries
# PROTECTION THRESHOLDS
ban_limit: 5 # Triggers if someone bans 5+ people quickly
kick_limit: 5 # Triggers if someone kicks 5+ people quickly
channel_create_limit: 5 # Triggers if someone creates 5+ channels quickly
role_create_limit: 5 # Triggers if someone creates 5+ roles quickly
channel_delete_limit: 5 # Triggers if someone deletes 5+ channels quickly
role_delete_limit: 5 # Triggers if someone deletes 5+ roles quickly
channel_update_limit: 5 # Triggers if someone changes 5+ channels quickly
role_update_limit: 5 # Triggers if someone changes 5+ roles quickly
member_update_limit: 5 # Triggers if someone changes 5+ members quickly
unban_limit: 5 # Triggers if someone unbans 5+ people quickly
# TIME WINDOW FOR COUNTING ACTIONS (IN MILLISECONDS)
# 36000000 = 10 hours, 3600000 = 1 hour, 600000 = 10 minutes
time_window: 36000000
The protection settings control how the AntiNuke Selfbot responds to potential threats and malicious actions. You can adjust these settings based on your server's activity level and security needs.
Recommendation: Start with the default limits (5) and adjust them based on your server's normal administrative activity. Busy servers might need higher thresholds.
whitelisted:
users: ['123456789012345678', '234567890123456789'] # Trusted admin IDs
The whitelist contains the Discord user IDs of trusted administrators who should not trigger the AntiNuke system when performing administrative actions.
Security Note: Only add completely trusted users to the whitelist. Anyone on this list can perform administrative actions without triggering protection.
This guide will help you set up and run the Discord AntiNuke Selfbot on your Android device using Termux. Please note that mobile hosting is generally not recommended for 24/7 protection due to battery limitations and system restrictions.
Important: Mobile hosting has several limitations including battery drain, thermal issues, and OS-enforced background restrictions that may prevent continuous operation.
Download Termux from F-Droid (recommended). The Google Play version may be outdated.
pkg update && pkg upgrade -y
pkg install nodejs git nano -y
mkdir -p ~/antinuke
cd ~/antinuke
git clone https://github.com/faiz4sure/discord-antinuke-selfbot.git
cd discord-antinuke-selfbot
npm install
Edit the configuration file using nano:
nano config/config.yaml
Edit the configuration with your information, then save and exit by pressing Ctrl+O, Enter, then Ctrl+X.
To keep the selfbot running even when Termux is closed, use tmux:
# Install tmux
pkg install tmux -y
# Create a new tmux session
tmux new -s antinuke
# Start the selfbot (inside tmux)
node index.js
# Detach from tmux (keep running in background): press Ctrl+B, then D
# To reattach later:
tmux attach -t antinuke
Tip: Alternatively, consider using a proper VPS (Virtual Private Server) or dedicated hosting service for more reliable 24/7 protection.
Encountering issues with the Discord AntiNuke Selfbot? Use this troubleshooting guide to diagnose and resolve common problems.
Problem: The selfbot fails to start with an "invalid token" error.
Solution:
Problem: The selfbot can't ban/kick users or take other actions.
Solution:
Problem: The selfbot is triggering on legitimate administrative actions.
Solution:
Problem: The selfbot crashes with out-of-memory errors.
Solution:
Problem: The selfbot is being rate limited by Discord.
Solution:
Use these commands to diagnose issues with your selfbot installation:
# Check Node.js version
node -v
# Check npm version
npm -v
# Verify package installation
npm list
# Check for errors in logs
cat logs/errors.txt
# Monitor real-time logs
tail -f logs/errors.txt
Need More Help? Join our support server for personalized assistance with your specific issue.
For the Discord AntiNuke Selfbot to provide effective protection, it needs to run 24/7 without interruption. This guide covers the best hosting options and setup methods.
Best Option: A VPS provides reliable 24/7 uptime with full control over the environment.
Recommendations:
Good Option: If you have a computer that runs 24/7, you can host the selfbot there.
Requirements:
Budget Option: Some cloud services offer free tiers that can run the selfbot.
Options:
Process Manager 2 (PM2) is the best way to keep your selfbot running continuously. It handles crashes, system reboots, and provides monitoring.
# Install PM2 globally
npm install -g pm2
# Start your application with PM2
pm2 start index.js --name 'antinuke'
# Set PM2 to start on system boot
pm2 startup
pm2 save
# View running processes
pm2 list
# Monitor logs
pm2 logs antinuke
# Restart the application
pm2 restart antinuke
Pro Tip: PM2 offers a web-based monitoring interface. You can enable it with pm2 plus
for additional insights into your selfbot's performance.
The Discord AntiNuke Selfbot provides powerful protection for your server, but it's important to follow these security best practices to ensure optimal protection while minimizing risks.
Using selfbots violates Discord's Terms of Service. To minimize risk to your main account, use a dedicated alt account for running the selfbot.
Never share your Discord token with anyone or commit it to public repositories. Store it securely and consider using environment variables instead of hardcoding it.
Only give your selfbot account the necessary permissions it needs to function. While Administrator permission makes setup easier, consider using more granular permissions if possible.
Only whitelist users you completely trust. Anyone on the whitelist can perform administrative actions without triggering the protection system.
Adjust protection thresholds based on your server's activity. Lower thresholds provide stronger protection but may cause false positives. Test different settings to find the right balance.
Regularly review the selfbot's logs to ensure it's functioning correctly and adjust settings as needed based on any false positives or missed security events.
Important Disclaimer: Using selfbots violates Discord's Terms of Service and may result in account termination. Use this software at your own risk and for educational purposes only.
Using selfbots violates Discord's Terms of Service. This project is shared for educational purposes only. You assume all responsibility and risk associated with using this software.
By downloading and using this selfbot:
This repository is officially owned by faiz4sure. Always obtain software from the official repository to ensure security and reliability.
Get started with the AntiNuke Selfbot today and protect your Discord community.