Need help with qb-clothing openmenu function

   exports['illenium-appearance']:startPlayerCustomization(function(appearance)
            if appearance then
                TriggerServerEvent("illenium-appearance:server:saveAppearance", appearance)
            end
        end, {
            components = true, componentConfig = { masks = true, upperBody = false, lowerBody = false, bags = false, shoes = false, scarfAndChains = false, bodyArmor = false, shirts = false, decals = false, jackets = false },
            props = false, propConfig = { hats = false, glasses = false, ear = false, watches = false, bracelets = false },
            enableExit = true,
        })

here this function only shows mask menu i want to do the same in qb-clothing can anyone help !!

-- For qb-clothing, to open just the mask customization
TriggerEvent('qb-clothing:client:openMenu', function(appearance)
    if appearance then
        TriggerServerEvent('qb-clothing:server:saveOutfit', appearance)
    end
end, {
    isMenu = true,
    menuType = 'mask',
    enableExit = true
})

i got this function but it give all clothing menu