All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Song script (mind blowing script???☠️☠️☠️☠️???)

The Song script (mind blowing script???☠️☠️☠️☠️???) code is below. Copy & inject it into the game. Enjoy!

Universal Script ? - Sing any Song using this script☠️
local song = "SONG NAME"

request = game:HttpGet("https://lyrics.flc.bar/search?song=" .. song)

decoded = game.HttpService:JSONDecode(request)

local lyrics = {}
for i in decoded.lyrics:gmatch("[^\r\n]+") do
   table.insert(lyrics, i)
end

for i, v in pairs(lyrics) do
   wait(3)
   game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
end