Rcore Clothing Docs
Config.ClothingItems = ["police_vest"] = label = "Police Vest", gender = "both", -- "male", "female", or "both" drawable = 5, -- component drawable ID texture = 0, -- texture ID component = 9, -- component ID (9 = torso accessory) requiredDlc = nil, -- optional DLC name prop = false, -- false for clothing, true for props ,
The script acts as an all-in-one solution for character creation and clothing management. rcore clothing docs
By doing your research, you can make an informed decision about whether Rcore Clothing is the right fit for your fashion needs. Config
: Before diving into deep configuration, always verify you have the latest version from your Keymaster to avoid compatibility bugs. gender = "both"
-- Get currently equipped items exports["rcore_clothing"]:getEquipped()
-- List all saved outfits (callback) exports["rcore_clothing"]:getOutfits(function(outfits) for name, data in pairs(outfits) do print(name) end end)