👕Prison Uniforms
This guide walks you through how the prison uniform system works and how to configure the inmate clothing for both male and female characters. These outfits are automatically applied when a player is jailed.
📦 Configuration Location
You’ll find this in your config.lua
under:
Config.PrisonUniform
It contains two sections:
male
– applied to male charactersfemale
– applied to female characters
👚 Uniform Structure
Each uniform is made up of clothing component slots, like t-shirt
, torso
, pants
, shoes
, etc.
Each component includes:
item
– the clothing item IDtexture
– the texture variation of the item
👨 Male Uniform Example
male = {
["t-shirt"] = { item = 15, texture = 0 },
["torso"] = { item = 535, texture = 0 },
["decals"] = { item = 0, texture = 0 },
["arms"] = { item = 11, texture = 0 },
["pants"] = { item = 197, texture = 0 },
["shoes"] = { item = 12, texture = 0 },
}
👩 Female Uniform Example
female = {
["t-shirt"] = { item = 14, texture = 0 },
["torso"] = { item = 73, texture = 0 },
["decals"] = { item = 0, texture = 0 },
["arms"] = { item = 4, texture = 0 },
["pants"] = { item = 54, texture = 2 },
["shoes"] = { item = 5, texture = 0 },
}
🧠 Tips
Want to customize it visually?
Use /saveoutfit
or clothing menu to get desired components
Add more detail
Add hats, masks, accessories, etc. using extra slots like mask
, gloves
, etc.
Add textures from mods
Make sure the texture numbers match your streamed components
Last updated