of     1   

Tripane
#143100877Saturday, August 09, 2014 6:10 PM GMT

So I have a humanoid (left arm, left leg, right arm, right leg, torso, head) and I need to make them all visible at once through a script (they're invisible) Can someone help
ungh01
#143101090Saturday, August 09, 2014 6:12 PM GMT

for v,i in pairs(model:children()) do if i:IsA("Part") then i.Transparency=0 end end
Tripane
#143101498Saturday, August 09, 2014 6:16 PM GMT

Wow its that simple.
Tripane
#143128701Saturday, August 09, 2014 10:50 PM GMT

Question: If the model is in the camera, how do I make sure that any changes made to the model (color, etc) are not visible to other players that see the model?
iiEssence
#143128877Saturday, August 09, 2014 10:52 PM GMT

They wouldn't be visible (to others) at all.
Tripane
#143129214Saturday, August 09, 2014 10:56 PM GMT

But I'm creating a character customization gui, how do I take the clothing model and make sure that only people with the gui visible see it Then what do I do about the model
iiEssence
#143129303Saturday, August 09, 2014 10:58 PM GMT

I've always wanted to do that. You are talking about the equip tab on Roblox Battle right? I didn't expect the coding to be so long and complex, so I just gave up :c
Tripane
#143129785Saturday, August 09, 2014 11:04 PM GMT

You can do that with clonetrooper1019's 3d gui module, but that's off topic No, this gui is at the beginning and the model is frozen in mid air, made up of local parts in the camera (well, I think that's how it should work)

    of     1