Answers for "create a category discord.js"

1

create a category discord.js

guild.createChannel('new-category', {
  type: 'category',
  permissionsOverwrites: [{
    id: guild.id,
    deny: ['MANAGE_MESSAGES'],
    allow: ['SEND_MESSAGES']
  }]
})
  .then(console.log)
  .catch(console.error);
Posted by: Guest on October-04-2021

Code answers related to "create a category discord.js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language