Q:

discord js delete message after time

message.reply('Invalid command')
  .then(msg => {
                msg.delete({ timeout: 20000 /*time unitl delete in milliseconds*/});
            })
  .catch(/*Your Error handling if the Message isn't returned, sent, etc.*/);
0
message.reply('Invalid command')
  .then(msg => {
    msg.delete(10000)
  })
0

New to Communities?

Join the community