mad-musicgame
FiveM rhythm-based mini-game. Players hit falling notes in a timing challenge with customisable difficulty and performance themes, each with matching sound effects.
Last updated

FiveM rhythm-based mini-game. Players hit falling notes in a timing challenge with customisable difficulty and performance themes, each with matching sound effects.
Last updated
exports['mad-musicgame']:start({
lives = 3, -- How many letters the player can miss.
speed = 0.3, -- How fast the letters fall down.
maxScore = 4, -- How many letters the player has to type to win.
letters = {'W', 'A', 'S', 'D'}, -- Optional. Defaults to all letters.
performanceType = 'guitar' -- 'guitar', 'singing', 'dancing'.
}, function(result)
if result then
print("success")
-- Minigame success
else
print("fail")
-- Minigame failure
end
end)