App

1. App Config (app.lua)

Config.AppSettings = {
    id = "kartik-boosting", -- Do not change this
    name = "Boosting",
    url = 'https://cfx-nui-' .. GetCurrentResourceName() .. '/web/index.html',
    color = "from-blue-500 to-indigo-600", 
    isNetworkStatusRequired = true,
    icon = "Laptop",
    isVisible = function ()
        return true
    end
}

Explanation

  • id – unique identifier, must remain "kartik-boosting".

  • name – display name inside the Laptop.

  • url – NUI link for the frontend.

  • color – gradient theme color.

  • isNetworkStatusRequired – requires VPN/network connection for boosting.

  • icon – icon for app tile.

  • isVisible – control visibility with permissions if needed.


Last updated