Answers for "python discord bot on member join"

8

discord.py making a bot join

@bot.command()
async def join(ctx):
    channel = ctx.author.voice.channel
    await channel.connect()
@bot.command()
async def leave(ctx):
    await ctx.voice_client.disconnect()
Posted by: Guest on June-08-2020

Code answers related to "python discord bot on member join"

Python Answers by Framework

Browse Popular Code Answers by Language