How to get image asset of a model

I dont know where to put this but I think this is a possible aria on image asset Ids.

The problem is I have some assets from toolbox now I want to get their image asset id because there is a button where I want to put the image asset of that model.
image
I cant seem to figure out a way to get the image assets of the models… how should I get them? also saving and uploading the assets something gets rejected because I guess bot has a way to reject images of the assets.

These are the packs I want the image for,
https://www.roblox.com/bundles/299/Superhero
https://www.roblox.com/bundles/238/Man
https://www.roblox.com/bundles/239/Woman
https://www.roblox.com/bundles/291/Zombie
https://www.roblox.com/bundles/306/Pirate-Swashbuckler

1 Like

I don’t think there is another way other than manually saving the bundle’s picture as and then uploading it as a Decal and use it to your ImageLabel.

You can use the content data links Roblox provides to get the BundleThumbnail. You just need to look at the documentation page and it shows the supported ThumbnailTypes.

DOCUMENTATION LINK: Content Data Types

Example:


This will gve you the Superhero bundles thumbnail, just manually put this inside of the Image section of your ImageLabel or do it by scripting, make sure to put in quotes. The part where it says id= is right where you need to put the ID that appears inside of the link.

"rbxthumb://type=BundleThumbnail&id=299&w=150&h=150"

Image from Gyazo

5 Likes

Thanks a lot man, I really appricieate it. I was looking for something like this for years! This really helped me. :heart:

1 Like