⏹️SLEEK PAUSE MENU

Here check the installation guide

INSTALLATION GUIDE

  1. Download from KEYMASTER and Unzip the forge-pausemenu.pack.zip and place this folder in your server's resource folder.

  2. Add the resource to your server start config: ensure forge-pausemenu,the name of the folder must not be changed or the resource will not function correctly.

  3. Clear the cache of your server and also of your own FiveM.

  4. Reboot the entire server with the forge script well ensured in your server.cfg.

  5. This script does not have any SQL to install.

  6. Do not rename this script, this may cause it to fail when opening the interface.

CONFIG

The following will explain all the settings, one of the most important things that I recommend you spend a few minutes to understand in order to offer your users the best possible experience.

Fill all the CONFIG very carefully. Here you can also translate all the texts of the Pause Menu.

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

Last updated