diff --git a/commands/fun/face.js b/commands/fun/face.js
index 11e311ab..0c75bd8c 100644
--- a/commands/fun/face.js
+++ b/commands/fun/face.js
@@ -24,9 +24,12 @@ module.exports = class faceappCommand extends Command {
     }
 
     async run(message, { url, type }) {
+        if(url.includes("http") || url.includes("www")) {
         let face = type.toLowerCase();
         let { body } = await superagent.get(url)
         let image = await faceapp.process(body, face)
         message.channel.sendFile(image)
+    } else 
+    message.say("You need to input a link")
           }
 };
\ No newline at end of file