import discord from discord.ext import commands bot = commands.Bot(command_prefix="!", intents=discord.Intents.all()) @bot.event async def on_ready(): print('Bot jest gotowy!') async def on_member_join(member): welcome_channel = member.guild.get_channel(1138768536827854888) welcome_message = f"Witaj {member} na WomiMc.Pl! Miło, że jesteś z nami." await welcome_channel.send(welcome_message) bot.run("TOKEN🤫")