Answer the question
In order to leave comments, you need to log in
How to create a channel using a command?
Hello, how do I create a discord channel using the discord.js command?
Answer the question
In order to leave comments, you need to log in
You can create a channel using the command as follows:
client.on("message", message => {
if (message.content === prefix + "Команда"){
message.guild.channels.create("Название канала", "text") // text - тип канала
}
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question