Configuration

Page dedicated to how to configure our Skin Menu [V2]

Configuration Guide (config/config.lua)

Targeting Integration The script dynamically detects third-eye targeting systems. It is strongly recommended to use ox_target. If no target system is detected, it falls back to proximity-based 'E' interactions.

Config.Target = {
    ox_target = true, -- Preferred method
    useE = false,     -- Legacy fallback
}

Shop Specialization Unlike older scripts where every clothing store allowed DNA changes, qf_skinmenu allows you to strictly segregate what players can modify based on the shop they interact with.

Config.ShopCategories = {
    ['clothing'] = { 'clothes', 'addons' }, -- Only apparel and props
    ['barber']   = { 'dna', 'face' },       -- Hair, makeup, and facial features
    ['tattoo']   = { 'tattoos' },           -- Exclusive to tattoo parlors
    ['surgeon']  = { 'dna', 'face' },       -- Plastic surgery (parents, structure)
}

Photo Studio Coordinates When a player creates a new character or takes a wardrobe photo, they are temporarily teleported to an isolated dimension. You must provide coordinates for a visually appealing, well-lit location.

Config.PhotoStudio = {
    coords = vector3(617.6306, 2766.3438, 42.0881),
    heading = 182.6283,
}

Last updated