Disabling Components / Props
You can disable any Component / Prop using shared/config.lua
if you have some clothing as items.
- For example if you want to disable Masks then you can change
Masks
value totrue
underConfig.DisableComponents
. It should look like this:
shared/config.lua
Config.DisableComponents = {
Masks = true,
UpperBody = false,
LowerBody = false,
Bags = false,
Shoes = false,
ScarfAndChains = false,
BodyArmor = false,
Shirts = false,
Decals = false,
Jackets = false
}
- For example if you want to disable Watches then you can change
Watches
totrue
underComponent.DisableProps
. It should look like this: