It does not work I think I am out of date, please help me
Error : Command raised an exception: AttributeError: 'VoiceClient' object has no attribute 'create_ytdl_player'
My code:
@bot.command(pass_context=True)
async def play(ctx, url):
author = ctx.message.author
channel = author.voice.channel
vc = await channel.connect()
player = await vc.create_ytdl_player(url)
player.start()
Top comments (0)