From the reference libraryFiveM

esx_lscustom

esx/src/pages/en/esx_addons/esx_lscustom.mdx

esx_lscustom

Github Link

ESX LSCustom is a resource which enables GTA's LSCustoms. it allows players to customize their vehicles however they want to. <br /> <img src="https://r2.fivemanage.com/SVPyt7tsQi4njkYd2eKX6/Screenshot2025-01-04083232.png" alt="Preview" />

Configuration

  • Config.DrawDistance
    • type: float
    • default: 10.0
    • description: The distance in which the LSCustoms marker is drawn.
  • Config.IsMechanicJobOnly
    • type: bool
    • default: false
    • description: If set to true, only players with the mechanic job can access LSCustoms.
  • Config.Zones
    • type: table
    • description: The list of LSCustoms locations.
    • layout:
  • Config.DefaultWheelsPriceMultiplier
    • type: integer
    • default: 2
    • description: The default price multiplier for wheels.
Config.Zones = {
	ls1 = {
		Pos   = vector3(-337.38, -136.92, 38.57),
		Name  = TranslateCap('blip_name'),
		Hint  = TranslateCap('press_custom')
	},
}
  • Config.Colours
    • type: table
    • description: The list of colours that can be used in LSCustoms.
    • layout:
Config.Colors = {
	{label = TranslateCap('black'), value = 'black'},
     --[...] Rest of the colours
}
Back to documentation