TheAlaska
|
  |
| Joined: 21 Jan 2011 |
| Total Posts: 152 |
|
|
| 04 May 2015 05:58 PM |
I know that for example you can change the transparency of a individual part. Ex: script.parent.part1.transparency = 1 But, is it possible to for example, change the trasparency of all parts inside a model at once, instead of doing them one by one? |
|
|
| Report Abuse |
|
murcury57
|
  |
| Joined: 30 Jun 2010 |
| Total Posts: 90299 |
|
| |
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 04 May 2015 06:11 PM |
for i,v in pairs(game.Workspace.Model:GetChildren()) do if v:IsA("BasePart") then v.Transparency = 1 end end |
|
|
| Report Abuse |
|