1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/fun/despacito.js

18 lines
631 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class DespacitoCommand extends Command {
constructor(client) {
super(client, {
name: 'despacito',
group: 'fun',
memberName: 'despacito',
description: `despacito`,
});
}
async run(message) {
message.say("DES\nPA\nCITO");
message.say("https://images-eu.ssl-images-amazon.com/images/I/619fzjO1rmL._SS500.jpg");
message.say("https://cdn.dopl3r.com/memes_files/despacito-eS6Lm.jpg");
message.say("https://www.youtube.com/watch?v=kJQP7kiw5Fk");
}
};