local ped = PlayerPedId()
for component = 0, 12 do
local count = GetNumberOfPedDrawableVariations(ped, component)
for drawable = 0, count - 1 do
if IsPedComponentVariationGen9Exclusive(ped, component, drawable) then
print("Component " .. component .. " drawable " .. drawable .. " is a gen9 exclusive, skip!")
end
end
end