of     1   

1Ra
#44934507Friday, April 01, 2011 8:57 PM GMT

when ever i clone somthing from lighting into workspace all the joints and everything holding it together break? script: for i, v in pairs (game.Lighting.Bombers:GetChildren()) do v:clone().Parent = game.workspace and: game.lighting.model:clone.parent = game.Workspace
CardCaddy
#44934673Friday, April 01, 2011 9:00 PM GMT

3 things: 1.) You forgot an 'end' in your first script. 2.) There is no 'game.workspace'. There is however 'game.Workspace', or just 'workspace'. 3.) Thats just what happens. I don't know the tecnicallities, but just re-insert joints with a script. workspace.DescendantAdded:connect(function(descendant) -- Make Joints Here end
CardCaddy
#44934782Friday, April 01, 2011 9:02 PM GMT

Whoops... workspace.DescendantAdded:connect(function(descendant) -- Make Joints Here end)
1Ra
#44935362Friday, April 01, 2011 9:11 PM GMT

ok ill try to make joints.
Combrad
#44935966Friday, April 01, 2011 9:20 PM GMT

Or... v:Clone() v.Parent = game.Workspace v:MakeJoints()
Combrad
#44935993Friday, April 01, 2011 9:21 PM GMT

Sorry, forgot to tag D: v2 = v:Clone() v2.Parent = game.Workspace v2:MakeJoints()
1Ra
#44949246Saturday, April 02, 2011 12:56 AM GMT

perfect!!! haha thx combrad!!!!
goldfriend10
#44951642Saturday, April 02, 2011 1:37 AM GMT

simpler way: v:clone().Parent = workspace v:MakeJoints()
CardCaddy
#44988294Saturday, April 02, 2011 7:09 PM GMT

@goldfriend; wrong.
1Ra
#44999735Saturday, April 02, 2011 10:50 PM GMT

ya

    of     1