Ideal way to embed decals onto imagelabels

is it a good practice to use "http://www.roblox.com/asset/?id="..textureid or should I use "rbxthumb://type=Asset&w=768&h=432&id="..assetId ? I noticed the former one is a better practice but I need confirmation because the latter one will yield/delay to retrieve the textureid which imagelabels use

my purpose is to embed decals on imagelabels

I would need to write a function to retrieve the textureid

1 Like

use the http://www.roblox.com/asset/?id=...textureid method. It directly loads the image without delay, since rbxthumb method can cause loading delays and is mainly for thumbnails. No need for a function unless you’re automating ID conversion.