github discord bot js code example
Example: discord.js bot credits command
If you want to add credits (Bot creators) in an embedded response use the following:
const embed = new Discord.MessageEmbed()
.setColor('#0099ff')
.setTitle('Bot Creation Team')
.setAuthor('<ENTER_AUTHOR_HERE>')
.setDescription('I was made by <ENTER @ID HERE>.')
.setTimestamp()
.setFooter('<ENTER_FOOTER_NOTES_HERE');
message.channel.send(embed).catch(e => { return e; });