module.exports = { config: { name: "fuckyou", version: "1.0", author: "BaYjid", countDown: 5, role: 0, shortDescription: "no prefix", longDescription: "no prefix", category: "no prefix", }, onStart: async function(){}, onChat: async function({ event, message, getLang }) { if (event.body && event.body.toLowerCase() === "fuck") { return message.reply({ body: "Fuck you toođź–•", attachment: await global.utils.getStreamFromURL("https://i.imgur.com/9bNeakd.gif") }); } } }