diff --git a/commands/reserved/bsespam.js b/commands/reserved/bsespam.js
new file mode 100644
index 0000000..b486e4e
--- /dev/null
+++ b/commands/reserved/bsespam.js
@@ -0,0 +1,41 @@
+const { Command } = require('discord-akairo');
+
+class bsespamCommand extends Command {
+    constructor() {
+        super('bsespam', {
+            aliases: ['bsespam'] ,   //Required
+            category: 'reserved',    //recommended
+            channelRestriction: 'guild',      //needed if you want to restrict where we can launch the command
+            args: [                       //if need args
+                {
+                    id: 'number',
+                    type: 'interger',
+                },
+                {
+                    id: 'text',
+                    type: 'string'
+                }
+            ],
+            description: {               //recommended 
+                content: 'ONLY FOR BIG SNOW ENERGY\nSpam the text you send',
+                usage: '[args]',
+                examples: ['']
+            }
+        });
+    }
+
+    async exec(message, args) {
+        if (message.author.id != "428387534842626048")
+            return message.say('Command only available to **Big Snow Energy**')
+        if (args.number <= 10) {
+            for(let i = 0; i < args.number; i++) {
+                message.channel.send(args.text);
+                }
+                return message.channel.send('Finished :)');
+        } else {
+            return message.channel.send('No more than 10!')
+        }
+    }
+}
+
+module.exports = bsespamCommand;
\ No newline at end of file