of     1   

Thriller230
#36838139Thursday, November 11, 2010 2:10 PM GMT

so I have a script that is supposed to make you invisible if you touch it but it just works one time and then I have to disable it and enable it again please help. Here's the script: function onTouched(part) part.Transparency = 1 h = part.Parent:findFirstChild("Left Leg") if h ~= nil then h.Transparency = 1 x = part.Parent:findFirstChild("Right Leg") if x ~= nil then x.Transparency = 1 d = part.Parent:findFirstChild("Right Arm") if d ~= nil then d.Transparency = 1 c = part.Parent:findFirstChild("Left Arm") if c ~= nil then c.Transparency = 1 a = part.Parent:findFirstChild("Torso") if a ~= nil then a.Transparency = 1 l = part.Parent:findFirstChild("Head") if l ~= nil then l.Transparency = 1 l.face:Remove() end end end end end end end script.Parent.Touched:connect(onTouched) Please help!
Thriller230
#36838191Thursday, November 11, 2010 2:14 PM GMT

only one person looked and nobody helps! Bump
iApp
#36838265Thursday, November 11, 2010 2:19 PM GMT

--This should work. function onTouched(part) find = part.Parent:GetChildren() human = part.Parent:FindFirstChild("Humanoid") if human ~= nil then for i = 1,#find do if find[i].className == "Part" then find[i].Transparency = 1 end end end end script.Parent.Touched:connect(onTouched)
traderrocky
#36838273Thursday, November 11, 2010 2:20 PM GMT

hm. Not sure. Wiki may help, but not sure.
QuintinityZero
#36838951Thursday, November 11, 2010 3:00 PM GMT

iApp's script will work.

    of     1