In order to add new option to our AIO Menu, here's some example done with our cinematic mode:
{
name = 'cinematic_mode', -- make sure that's unique name.
label = 'Cinematic Mode', -- label of the option
onUse = function()
Cinematic.Init() -- code to execute after using it!
end,
},