diff --git a/commands/fun/music.js b/commands/fun/music.js
index 378848cf..49ce0652 100644
--- a/commands/fun/music.js
+++ b/commands/fun/music.js
@@ -31,12 +31,14 @@ module.exports = class MusicCommand extends Command {
 //  If user say "stop" make the bot leave voice channel
             if (ytblink == 'stop') {
                 voiceChannel.leave()
+                message.say('I leaved the channel');
             } else
             voiceChannel.join().then(connection => {
                 const stream = ytdl(ytblink, { filter: 'audioonly' });
                 const dispatcher = connection.playStream(stream);
 //  End at then end of the audio stream
                 dispatcher.on('end', () => voiceChannel.leave());
+                message.say('Music ended, Leaved the channel');
             });
         }
     }
\ No newline at end of file