βΉοΈSLEEK PAUSE MENU
Here check the installation guide
Last updated
Config = {}
-- _____ _____ _ _ ______ _____ _____ _ _______ ___ _____ _____ _____ _ _
-- / __ \ _ | \ | || ___|_ _| __ \ | | | ___ \/ _ \_ _|_ _| _ | \ | |
-- | / \/ | | | \| || |_ | | | | \/ | | | |_/ / /_\ \| | | | | | | | \| |
-- | | | | | | . ` || _| | | | | __| | | | /| _ || | | | | | | | . ` |
-- | \__/\ \_/ / |\ || | _| |_| |_\ \ |_| | |\ \| | | || | _| |_\ \_/ / |\ |
-- \____/\___/\_| \_/\_| \___/ \____/\___/\_| \_\_| |_/\_/ \___/ \___/\_| \_/
Config.Framework = 'esx' -- esx, qbcore
Config.trigger = 'es_extended' -- qb-core or es_extended
Config.UI = { -- Everything related to Interface texts
lowPerformanceMode = true,
commands = { -- You can add as many as you want, just by copying and pasting the previous one.
{
command = 'help',
description = 'Show Help Menu'
},
{
command = 'revive',
description = 'Revives a player'
}
},
keys = { -- You can add as many as you want, just by copying and pasting the previous one.
{
key = 'F5',
description = 'Open Menu (Default)'
}
}
}
-- REPORT BUTTON: Here you will add the export of the Report System you use to be opened when the button is clicked. You can also modify the button to open whatever you want!
Config.ExportReport = function()
ExecuteCommand("report")
end