๐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.PrisonUniformIt 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
๐ง 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