|
| 06 Jan 2012 11:24 AM |
i was wondering if there was a way to either:
A) use a script that looks something like this:
places = script:GetChildren() places:Clone().Parent = game.Lighting
or B) is there a way to remove a part without removing its children? |
|
|
| Report Abuse |
|
|
| |
|
NeonBlox
|
  |
| Joined: 19 Oct 2008 |
| Total Posts: 1462 |
|
|
| 06 Jan 2012 11:28 AM |
A)
for _,v in pairs(script:GetChildren()) do a = v:clone() a.Parent = game.Lighting end
B)
You would have to parent everything to workspace, then remove the lone part they were parented to. |
|
|
| Report Abuse |
|
|
| |
|
Phrosty
|
  |
| Joined: 04 Jan 2012 |
| Total Posts: 346 |
|
| |
|