Clothes

The following scripts are compatible by default:

  • qb-clothing (and any other script that uses its same event names)

  • illenium-appearance

  • tgiann clothing

  • esx_skin and skinchager (who uses this in 2025?)

Other Clothing Scripts

To make your own clothing script compatible do the following:

  • Go to config/clothing.lua > add your resource name in the compatible table.

  • Go to client/editable/clothing.lua > line 18 add a new line like this right before the one from illenium-appearance:

if Config.ClothingScript == "your_resource_name" then
  dbug("your_resource_name")
  -- Add your setPed, setClothing or however your clothing script export is named
  -- Set the clothes to the designed ped and trigger a return at the end
  -- Look at the other scripts examples
  
  return 
end
  • Go to server/editable/_callbacks.lua > line 32 add your clothing script export to retrieve the player clothes using identifier:

Last updated