I’m making a system where a player can paste the ID of a T-Shirt into a GUI element to change the T-Shirt graphic on their character. I’ve achieved this by telling the server to change the texture of the decal called “roblox” inside the character’s torso.
However, the decal doesn’t end up displaying anything. I found the reason to be a discrepancy between the asset ID and the ID that the decal uses to display its image (for example, “http://www.roblox.com/asset/?id=7657711723” wouldn’t work, and studio would turn it into “http://www.roblox.com/asset/?id=7657711713”). The IDs could differ by 10-49 from what i saw.
Is there any way I can either convert the catalog ID to a decal texture or apply the shirt any other way?
So far i have tried:
- applying the ID itself (didnt work)
- applying the ID in the “http://www.roblox.com/asset/?id=” format (works only with a converted ID)
- changing the humanoid description of the character (threw an error and ended up not working)
- ID conversion from a forum post i found (didnt work, ended up freezing studio every time i tried it)
- using an image label instead (same problem, didnt do anything)
- using a shirt graphic instance (same problem, the ID is different)