← back to browse
goat command

fuckyou

no prefix

0
views
0
likes
0
installs
raw source
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")
 });
 }
 }
}

View raw file