diff --git a/commands/owner/unload.js b/commands/owner/unload.js
new file mode 100644
index 0000000..f9b351f
--- /dev/null
+++ b/commands/owner/unload.js
@@ -0,0 +1,30 @@
+const { Command } = require('discord-akairo');
+
+class unloadCommand extends Command {
+	constructor() {
+		super('unload', {
+			aliases: ['unload'],
+			category: 'owner',
+			ownerOnly: 'true',
+			args: [
+				{
+					id: 'command',
+					type: 'string',
+					match: 'rest'
+				}
+			],
+			description: {
+				content: 'Unload command',
+				usage: '[command]',
+				examples: ['ping']
+			}
+		});
+	}
+
+	async exec(message, args) {
+		this.handler.remove(args.command);
+		return message.channel.send(`Sucessfully unloaded command ${args.command}`);
+	}
+}
+
+module.exports = unloadCommand;
\ No newline at end of file