dyudabomb
|
  |
| Joined: 06 Jun 2010 |
| Total Posts: 113 |
|
|
| 16 Feb 2013 10:40 PM |
Hey! I'm trying to clone a model from lighting to workspace using this code
game.Lighting.Slender:clone(game.Workspace)
Should that bring the model named "Slender" To Workspace?
Thanks for help! |
|
|
| Report Abuse |
|
|
Azarth
|
  |
| Joined: 17 Aug 2012 |
| Total Posts: 2760 |
|
|
| 16 Feb 2013 10:42 PM |
local sl = game.Lighting.Slender sl:Clone().Parent = Workspace
|
|
|
| Report Abuse |
|
|
Joalmo
|
  |
| Joined: 28 Jun 2009 |
| Total Posts: 1160 |
|
|
| 16 Feb 2013 10:43 PM |
| Something like this you'd be better off just testing yourself, but yes, it would work as long as there's a model named "Slender" in lighting. |
|
|
| Report Abuse |
|
|
Dodeca
|
  |
| Joined: 11 Sep 2011 |
| Total Posts: 13649 |
|
|
| 16 Feb 2013 10:59 PM |
Here you go:
local a = game.Lighting.Slender:clone() a.Parent = game.Workspace
|
|
|
| Report Abuse |
|
|