Nodelink
Player
getLyric
- Name: getLyric
- Description: Get the current song's lyric on Nodelink's API
- Type: player function
- Example:
const player = rainlink.players.get("guild_id")
if (!player) return
// This will get the current track's lyrics
await player.functions.exec("getLyric", undefined, "en")
// This will get the lyrics by trackname
await player.functions.exec("getLyric", "Yorushika - Thought Crime", "en")