diff --git a/commands/fun/face.js b/commands/fun/face.js
index e043e3a8..910bf573 100644
--- a/commands/fun/face.js
+++ b/commands/fun/face.js
@@ -26,16 +26,15 @@ module.exports = class faceappCommand extends Command {
     }
 
     async run(message, { url, type }) {
-        if(url.includes("http") || url.includes("www")) {
+
+        var Attachment = (message.attachments).array();
+
         let face = type.toLowerCase();
-        let { body } = await superagent.get(url)
+        let { body } = await superagent.get(Attachment[0].url)
         let image = await faceapp.process(body, face)
         .catch(error => {
             message.say('Cant recognize the face')
             console.error(error)
         })
         message.channel.sendFile(image)
-    } else
-        message.say("You need to input a link")
-    }
-};
\ No newline at end of file
+}};
\ No newline at end of file