Clone a model, but exclude one part of the model?
I would like to know how to clone a whole model, but exclude one part without doing :
1 | local newtycoonpart 1 = game.ServerStorage.tycoon 1. owner:Clone() |
2 | newtycoonpart 1. Parent = workspace |
3 | newtycoonpart 1. Value = player.Parent.Name |
4 | local newtycoonpart 2 = game.ServerStorage.tycoon 1. Buttons:Clone() |
5 | newtycoonpart 2. Parent = workspace |
6 | local newtycoonpart 3 = game.ServerStorage.tycoon 1. mandropper 1 :Clone() |
7 | newtycoonpart 3. Parent = workspace |
but instead just exclude one part from cloning. How would I do that?