If this doesn't work, it's a problem on your end. The first was I showd you is more effeciant.
function DoStuff (part)
for i,v in pairs(part.Parent:GetChildren()) do
if v.Name == "Left Leg" or v.Name == "Right Leg" then
v.Transparency = 1
end
end
end
script.Parent.Touched:connect(DoStuff)
|