Russian roulette kick/mute bot
Random do kick/mute to user in specific channel.
- Receive channel from user who use the command
ctx.message.author.voice.voice_channel
- Get all members in voice channel by accessing its property
channel.members
- Random to get 1 user, then random to do action that will kick or ban that user
import random # To random 1 element from input random_element = random.choice(your_list) # member function member.kick() member.ban()