This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/buttontest.js

16 lines
397 B
JavaScript

module.exports = {
name: "buttontest",
description: "buttontest",
execute(client, message, args) {
const buttonembed = {
"title": "buttontest",
"description": "anitrox buttontest",
"color": 9442302,
"footer": {
"icon_url": "https://cdn.discordapp.com/embed/avatars/0.png",
"text": "footertext"
}
};
message.channel.send({ embed: buttonembed });
}
}