roblox singing script _G.skip = false --execute just _G.skip=true to skip a song local playlist = { ["Revenge"] = "https://pastebin.com/raw/4ZvZRV9F", } function chat(msg) game:service'ReplicatedStorage'.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, 'All') end function sing(url, title) roblox singing script How to use it? roblox singing script local text = game:HttpGet(url, true) local lyrics = {} for s in text:gmatch("[^\r\n]+") do table.insert(lyrics, s) end local duration = #lyrics * 5 chat("Duration: " .. tostring(duration) .. " seconds") for i,v in pairs(lyrics) do if _G.skip then chat("Skipping " .. title) roblox singing script How to use it? roblox singing script _G.skip = false wait(1) break end wait(5) chat(v) end end for i,v in pairs(playlist) do roblox singing script PasteShr roblox singing script chat("Now playing: " .. i) sing(v, i) end roblox singing script