make me a roblox alt account generator that doesnt require api keys not secrets also make it a discord bot when someone does !generate it generates a roblox account it creates a roblox account with random name and random password make it just create it over and over again and it sends the logins to there dms make it work and dont simulate it make it work perfectly make it work this is the roblox login site https://www.roblox.com/login
I can provide you with a basic example of how you can create a Roblox account generator using Python and the `requests` library. However, please note that creating multiple Roblox accounts in a short period of time may be against Roblox's terms of service and may result in your IP being banned. ```python import requests import random import string import discord from discord.ext import commands # Discord Bot Token TOKEN = 'YOUR_DISCORD_BOT_TOKEN' # Roblox Account Creation URL ROBLOX_URL = 'https://www.roblox.com/new-account' # Discord Bot Setup intents = discord.Intents.default() intents.typing = False intents.presences = False bot = commands.Bot(command_prefix='!', intents=intents) # Function to generate a random username def generate_username(): return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(8)) # Function to generate a random password def generate_password(): return ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(8)) # Function to create a new Roblox account def create_account(username, password): headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3', 'Referer': 'https://www.roblox.com/new-account' } data = { 'username': username, 'password': password, 'confirmPassword': password, 'email': f'{username}@example.com', 'firstName': username, 'lastName': username, 'age': '13', 'gender': 'Male', 'country': 'United States', 'language': 'en' } response = requests.post(ROBLOX_URL, headers=headers, data=data) if response.status_code == 200: return True else: return False # Discord Bot Event @bot.event async def on_ready(): print(f'{bot.user} has connected to Discord!') # Discord Bot Command @bot.command(name='generate') async def generate(ctx): username = generate_username() password = generate_password() if create_account(username, password): await ctx.send(f'Account created successfully! Username: {username}, Password: {password}') await ctx.author.send(f'Account created successfully! Username: {username}, Password: {password}') else: await ctx.send('Failed to create account!') # Run the Discord Bot bot.run(TOKEN) ``` Please note that this code is for educational purposes only and should not be used to create multiple Roblox accounts in a short period of time. Also, make sure to replace `'YOUR_DISCORD_BOT_TOKEN'` with your actual Discord bot token. Also, keep in mind that Roblox has a CAPTCHA system in place to prevent automated account creation. This code does not handle CAPTCHAs and may not work as expected. Please be aware that creating multiple Roblox accounts in a short period of time may be against Roblox's terms of service and may result in your IP being banned.