I'm making a clothing stand that users can rent out. I cannot find a way to load the shirt's texture from a script. Any way around this?
This is what I had to do
1 | local shrt = game:GetService( "InsertService" ):LoadAsset(data.ShirtId) |
2 | local shrtid = shrt.Shirt.ShirtTemplate |
3 | shrt:Remove() |
4 | local pnts = game:GetService( "InsertService" ):LoadAsset(data.PantsId) |
5 | local pntsid = pnts.Pants.PantsTemplate |
6 | pnts:Remove() |