I’m trying to get the Decal id of a Face by it’s asset id with a script.
Example: Silly Fun - Roblox has the Decal id 7699086. Roblox Studio automatically converts it when manually pasting the asset id in the Decal.
I’m trying to get the Decal id of a Face by it’s asset id with a script.
Example: Silly Fun - Roblox has the Decal id 7699086. Roblox Studio automatically converts it when manually pasting the asset id in the Decal.
do something like
Decal.Texture = "rbxassetid://"..DecalId
I don’t know the DecalId, only the one of the Asset.
Do you mean the face’s asset id?
Yes, I know the face’s asset id, but not the face’s decal id.
In that case
face.Texture = "rbxassetid://"..AssetId
That’s not working since the AssetId is not the same as it’s DecalId
do you mean the texture
(not the face)
I’m trying to get that texture by the face’s assetId, yes
I found a solution for this
I did not know that the InsertService can do that. Thank you very much!