Hey,
So, i wanted to make a mannequin with clothing where the people can change the clothing id.
The Shirts and pants on the mannequin wont show up and the id is not wrong because you can purchase the item.
Does anyone know the issue?
game.ReplicatedStorage.ChangeClothes.OnServerInvoke = function(plr,shirtId,pantsId)
script.Parent.Parent.PantsId.Value = pantsId
script.Parent.Parent.ShirtId.Value = shirtId
end
while wait() do
script.Parent.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=" ..script.Parent.Parent.PantsId.Value
script.Parent.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=" ..script.Parent.Parent.ShirtId.Value
end