diff --git a/commands/fun/yes.js b/commands/fun/yes.js
new file mode 100644
index 00000000..d463ddfd
--- /dev/null
+++ b/commands/fun/yes.js
@@ -0,0 +1,15 @@
+const { Command } = require('discord.js-commando');
+module.exports = class YesCommand extends Command {
+    constructor(client) {
+        super(client, {
+            name: 'yes',
+            group: 'fun',
+            memberName: 'yes',
+            description: 'very yes',
+        });
+    }
+
+    run(message) {
+        return message.say('haha very yes');
+    }
+};
\ No newline at end of file