Is it possible to get assetId using image texture, ie of shirts and pants?

I wanted to get the actual id of an asset using its texture image in game. Is it actually possible to do that using code or not?

1 Like

im not sure what you need the assetId for but if its too put it onto a character this is what I did

local model =  game:GetService("InsertService"):LoadAsset(id)
	local pants = model:WaitForChild("Shirt")
	local clone = pants:Clone()
	clone.Parent = modelUse
	model:Destroy()
1 Like