Files
gestion/commands/game/rickroll.js
T
VALOU3336 9bd39c69ca grand commit que tutur attend ( marche pas le raidmode en dev)
sinon il y a pleins de truc comme les anti raid , des coorectif ect
2024-04-22 18:30:33 +02:00

27 lines
853 B
JavaScript

const { EmbedBuilder } = require('discord.js');
module.exports = {
name: 'rickroll',
description: 'Never gonna give you up.',
emote: '😂',
utilisation: 'rickroll ',
category: 'game',
async execute(message, args, client) {
const roll = [
"Never gonna give you up",
"Never gonna let you down",
"Never gonna run around and desert you",
"Never gonna make you cry",
"Never gonna say goodbye",
"Never gonna tell a lie and hurt you",
];
const rick = roll[Math.floor(Math.random() * roll.length)];
const embed = new EmbedBuilder()
.setTitle(`😂・${rick}`)
.setImage('https://i.pinimg.com/originals/88/82/bc/8882bcf327896ab79fb97e85ae63a002.gif');
message.reply({ embeds: [embed] });
},
};