GetAppearance
Retrieves a player's appearance data in a standardized format.
Bridge.Clothing.GetAppearance(src, fullData)local Bridge = exports['community_bridge']:Bridge()
-- Get basic appearance data
local appearance = Bridge.Clothing.GetAppearance(source)
if appearance then
print("Player appearance loaded")
end
-- Get full appearance data including model
local fullData = Bridge.Clothing.GetAppearance(source, true)
if fullData then
print("Player model: " .. fullData.model)
endLast updated