BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
|
| 23 Feb 2013 05:50 PM |
I'm unfamiliar on how they make these codes work but this would be nice if they added this into lua.
Example:
wait()
Instance.new("Part", Workspace)
Part.Name = 1
Part.Anchored = true
wait()
Instance.new("Part", Workspace)
Part.Name = 2
Part.Anchored = true
wait()
---This is the code they should add
Local 1 = game.Workspace.1
Local 2 = game.Workspace.2
group:(1, 2) -- Something like this
This would group to parts in the workspace while creating them with this script. |
|
|
| Report Abuse |
|
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
| |
|
|
| 23 Feb 2013 05:52 PM |
| Simple create a model, and make the parent of the parts into the model |
|
|
| Report Abuse |
|
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
|
| 23 Feb 2013 05:52 PM |
| Yea or that, but this would be a nice feature. |
|
|
| Report Abuse |
|
|
|
| 23 Feb 2013 05:53 PM |
Ex. local mod = Instance.new("Model", Workspace)
local part = Instance.new("Part", mod) part.Name = "Merp"
local part2 = Instance.new("Part",mod) part2.Name = "Derp" |
|
|
| Report Abuse |
|
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
| |
|
|
| 23 Feb 2013 06:11 PM |
Nah...
Instance.new("Group", workspace)
does that just fine. |
|
|
| Report Abuse |
|
|