| |
|
|
| 28 Aug 2013 10:44 AM |
| Name of the cloned part is Part |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:46 AM |
| just copy it over and ovwr again |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:47 AM |
| for i = 1,1000 do [part]:Clone().Parent = [part].Parent end |
|
|
| Report Abuse |
|
|
| |
|
|
| 28 Aug 2013 10:49 AM |
| Master, I need it so part is unanchored too ;/ gimmie an exact script without [] |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:50 AM |
local opart = [define, dude] for i = 1,1000 do local npart = opart:Clone() npart.Anchored = false npart.Parent = opart.Parent end |
|
|
| Report Abuse |
|
|
badroboto
|
  |
| Joined: 21 Feb 2010 |
| Total Posts: 11703 |
|
|
| 28 Aug 2013 10:51 AM |
ogm you are a master at this |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:53 AM |
O_O I don't understand, gimmie the whole script
Part is inside Workspace and part needs to be cloned 1000 times :/ |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2013 10:55 AM |
local opart = workspace.Part -- here you go, because you're too stupid to..? for i = 1,1000 do local npart = opart:Clone() npart.Anchored = false npart.Parent = opart.Parent end |
|
|
| Report Abuse |
|
|