I built a house and I really don’t want to build it again from scratch. Help please.
1 Like
Basic coding example of cloning a part or model:
local part = game.ServerStorage.Part:Clone()
part.Parent = workspace
2 Likes
The house is in many parts. Do I need to condense it to just one part first?
1 Like
Assuming its a model you want to clone, you can just write this:
local model = game.ServerStorage.Model:Clone()
model.Parent = workspace
Do I write a script or just put that in the command bar?
Both should function the same. Make sure the model or part is in ServerStorage.
1 Like
Right-click the model from explorer and click on Duplicate or select the model and do Ctrl+D on your keyboard.
4 Likes
Thanks for the second method for cloning objects.
2 Likes