I want this script so players touch the mannequin and it puts the cloths on them this is mt script.
shirtid = "http://www.roblox.com/asset/?id=" pantsid = "http://www.roblox.com/asset/?id=" script.Parent.Touched:connect(function(hit) if hit.Parent:findFirstChild("Humanoid")then char = hit.Parent if char:findFirstChild("Shirt") then char.Shirt.ShirtTemplate = shirtid else a = Instance.new("Shirt", char) a.Name = "Shirt" a.ShirtTemplate = shirtid end if char:findFirstChild("Pants") then char.Pants.PantsTemplate = pantsid else b = Instance.new("Pants", char) b.Name = "Pants" b.PantsTemplate = pantsid end end end)
It wont work though.
Use rbxassetid://
instead of www.roblox.com/asset?id
. If this didn't work, what error did you get on the console output?