$stopPlayer
$stopPlayer
will stop the current playing track
Usage
$stopPlayer
Example(s)
This will stop the current playing track
1client.command({2 name: 'stopplayer',3 code: `4 $stopPlayer5 `6});
This will stop the current playing track
1module.exports = [{2 name: "stopplayer",3 code: `4 $stopPlayer5 `6}]