(Correct me if I got the category wrong.) Is it possible to make a lyric game?
Hello, right now I want to make a lyric game with this song I’m still learning roblox lua and I don’t see people making a tutorial about this. Is it possible to make this kind of game? If so, how then? I’ve been trying to figure out because it would be a time consuming using this method.
I have a simpler method for you which is less time consuming.
local Lyrics = {
"lyric line 1", -- Notice the ,
"lyrics 2",
"lyrics 3"
}
for _, v in ipairs(Lyrics) do
print(v) -- Will print the lyrics in the array in order from top to bottom, index 1 to the end
end