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