InsertService failing to insert T-Shirt

I’m attempting to insert a T-Shirt from the catalog using the Insert Service. However, no matter what T-Shirt I choose from, the Shirt Graphic it returns has a blank Graphic value, likely meaning it failed to load, however no error is returned.

    	local is = game:GetService("InsertService")
	local o = is:LoadAsset(1166368015)
	o.Parent = workspace

I’ve tried changing the given catalog ID of the T-Shirt to a string rather than a number, but that fails to do anything. I’ve also tried other T-Shirts.

local ins = game:GetService("InsertService") --obtaining service
local template = ins:LoadAsset(1166368015):GetChildren()[1] --getting the ShirtGraphic from the created model
template.Parent = --insert the asset to your path whereas appropriate
2 Likes

Amazingly this worked. Thank you

1 Like