Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

discord.py create text channel

@client.command()
async def create_channel(ctx, channel_name):
	guild = ctx.guild
	channel = await guild.create_text_channel(channel_name)
Source by www.codeproject.com #
 
PREVIOUS NEXT
Tagged: #create #text #channel
ADD COMMENT
Topic
Name
4+8 =