So I don't know how this really works like the limbs except for the head and torso have spaces. Also I'm trying to make everyone in the server see you disappear. And the accessories are really really confusing on how to make the mesh invisible.
Player = script.Parent.Parent.Parent.Parent.Character function click() Player.Head.Transparency = 1 Player.RightLeg.Transparency = 1 Player.LeftLeg.Transparency = 1 Player.LeftArm.Transparency = 1 Player.RightArm.Transparency = 1 Player.Torso.Transparency = 1 Player.Face.Transparency = 1 end script.Parent.MouseButton1Click:connect(function() click() end)
When doing a function to a connect, you do not need to type
connect(function() click() end)
all you have to do is
Connect(click() end)