I’ve tried filtering through Category = 4 (BodyParts) and Subcategory = 37 (Bundles) but I keep getting HTTP Bad Request, I’ve seen other posts with other filters but they don’t load characters instead they load heads, hairs etc.
I’m looking for character bundles you can find on the marketplace, correct me if I’m wrong but it isn’t returning such. (The image here is the loaded icons of each)
Yep you’re right, I’m getting the images wrong. Will look into getting them correctly (If you know how please let me know ) but thanks for solving the initial issue!
lmk if this works for you (use the regular id not product)
local AssetService = game:GetService("AssetService")
local itemDetails = AssetService:GetBundleDetailsAsync(put the id here)
local bundleAssetId
for index, _ in itemDetails.Items do
if itemDetails.Items[index].Type == "UserOutfit" then
bundleAssetId = itemDetails.Items[index].Id
break
end
end
local imageLabel = path to your image label/button
local imageValue = `https://roblox.com/outfit-thumbnail/image?userOutfitId={bundleAssetId}&width=150&height=150&format=Png`
imageLabel.Image = imageValue