Holana/commands/invite.js

30 lines
993 B
JavaScript
Raw Normal View History

2022-12-02 00:54:36 -08:00
const messages = require("../utils/messages");
const { EmbedBuilder, MessageActionRow, MessageButton } = require("discord.js");
2021-12-09 21:24:04 -08:00
module.exports = {
2022-12-02 00:54:36 -08:00
name: "invite",
description: "Get Invite Link for Giveaway Child",
run: async (client, interaction) => {
let invite = new EmbedBuilder()
.setTitle(`${interaction.user.tag}`)
.setDescription("You can invite the bot by clicking on the below button.")
.setColor("#2f3136")
.setFooter({ text: `© EmotionChild | Have a nice day!` });
const row = new MessageActionRow().addComponents(
new MessageButton()
.setEmoji("865572290065072128")
.setLabel(`Invite ${client.user.username}`)
.setURL(
`https://discord.com/api/oauth2/authorize?client_id=910559370843131944&permissions=8&scope=bot%20applications.commands`
)
.setStyle("LINK")
);
await interaction.reply({
embeds: [invite],
components: [row],
ephemeral: true,
});
},
2021-12-09 21:24:04 -08:00
};