diff --git a/commands/owner/addResponse.js b/commands/owner/addResponse.js
new file mode 100644
index 00000000..3fe0aa00
--- /dev/null
+++ b/commands/owner/addResponse.js
@@ -0,0 +1,56 @@
+const { Command } = require('discord-akairo');
+const autoResponse = require('../../models').autoresponse;
+
+class addResponseCommand extends Command {
+	constructor() {
+		super('addResponse', {
+			aliases: ['addResponse'],
+			category: 'admin',
+			split: 'quoted',
+			userPermissions: ['MANAGE_MESSAGES'],
+			args: [
+				{
+					id: 'trigger',
+					type: 'string',
+					prompt: {
+						start: 'What word or sentence should trigger it?',
+					}
+				},
+				{
+					id: 'response',
+					type: 'string',
+					prompt: {
+						start: 'What word or sentence should the response be?',
+					}
+				},
+				{
+					id: 'type',
+					type: 'string',
+					prompt: {
+						start: 'What is the type of the response? (text,image,react)',
+					}
+				}
+			],
+			channelRestriction: 'guild',
+			description: {
+				content: 'Create custom autoresponse  [Click here to see the complete list of "addResponse"](https://cdn.discordapp.com/attachments/502198809355354133/561043193949585418/unknown.png) (Need "" if the trigger contains spaces)',
+				usage: '[trigger] [response]',
+				examples: ['"do you know da wea" Fuck off dead meme', 'hello Hello [author], how are you today?']
+			}
+		});
+	}
+
+	async exec(message, args) {
+		const autoresponse = await autoResponse.findOne({where: {trigger: args.trigger}});
+
+		if (!autoresponse) {
+			const body = {trigger: args.trigger, response: args.response, type: args.type};
+			autoResponse.create(body);
+			return message.channel.send(`autoresponse have been set to ${args.trigger} : ${args.response} with type: ${args.type}`);
+		} else {
+			return message.channel.send('The autoresponse already exist!');
+		}
+	}
+}
+
+module.exports = addResponseCommand;
\ No newline at end of file
diff --git a/commands/owner/removeResponse.js b/commands/owner/removeResponse.js
new file mode 100644
index 00000000..fa5f2e7d
--- /dev/null
+++ b/commands/owner/removeResponse.js
@@ -0,0 +1,41 @@
+const { Command } = require('discord-akairo');
+const autoResponse = require('../../models').autoresponse;
+
+class removeResponseCommand extends Command {
+	constructor() {
+		super('removeResponse', {
+			aliases: ['removeResponse'],
+			category: 'admin',
+			split: 'none',
+			userPermissions: ['MANAGE_MESSAGES'],
+			args: [
+				{
+					id: 'trigger',
+					type: 'string',
+					match: 'rest',
+					prompt: {
+						start: 'wich tag do you want to remove?',
+					}
+				}
+			],
+			channelRestriction: 'guild',
+			description: {
+				content: 'Remove created custom autoresponse',
+				usage: '[trigger]',
+				examples: ['do you know da wea']
+			}
+		});
+	}
+
+	async exec(message, args) {
+		const autoresponse = await autoResponse.findOne({where: {trigger: args.trigger, serverID: message.guild.id}});
+		if (autoresponse) {
+			autoResponse.destroy({where: {trigger: args.trigger}});
+			return message.channel.send('Sucesffuly deleted the following autoresponse: ' + args.trigger);
+		} else {
+			return message.channel.send('Did not find the specified autoresponse, are you sure it exist?');
+		}
+	}
+}
+
+module.exports = removeResponseCommand;
\ No newline at end of file