|
| 19 Dec 2013 12:11 PM |
will a script work if the 'Archivable' property is 'false'?????
i need a yes or no |
|
|
| Report Abuse |
|
|
| 19 Dec 2013 12:12 PM |
Yes Remember that the script will not save and it cannot be cloned with it set to true. |
|
|
| Report Abuse |
|
| |
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 19 Dec 2013 01:28 PM |
Yes, but adding any functions that will try to change the brick afterwards it is set into the workspace will fail. such as;
p = Instance.new("Part", game.Workspace) p.Size = Vector3.new(5,5,5) p.CFrame = CFrame.new(5,0,5) p.BrickColor = BrickColor.new("Reallly red") wait(5) p.BrickColor = BrickColor.new("Really black") -- This will not work because of the brick being non arhivable. :P
|
|
|
| Report Abuse |
|