Ahh... more trouble guys
if
child.Value == 1 ~~~~~~~~~~~~~~~~~
then wait (5)~~~~~~~~~~~~~~~~~
Parent.Part.PhysicalProperties.Transparency = 1 end
would this work?
You've got an issue there, Transparency isnt a part of PhysicalProperties.
You can get transparency by Part.Transparency.
example;
script.Parent.Part.Transparency = 1
Transparency is a property of a Part, not PhysicalProperties. Also, PhysicalProperties isn't a property of Parts, it is a datatype.
Try this:
Parent.Part.Transparency = 1
Marked as Duplicate by User#19524
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?