Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there a way I can duplicate something while keeping it's welds?

Asked by 7 years ago

So I made two helicopters. One is a passenger and the other is a personal. Now, I had two buttons, each assigned to one. Now, they replicate from ReplicatedStorage into Workspace just fine, the only problem with that is all parts just fall off. Any fixes?

-Thanks, RadioactiveSherbet

0
Pretty sure if you put the models that are welded into the ReplicatedStorage they should clone w/ the welds as well. OneTruePain 191 — 7y
0
You would store this kind of thing in server storage? User#5423 17 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

local NewCloneModel = Instance.new("Model", plr.Character) NewCloneModel.Name = "SpeederVehicle" local NewClone = Cloned:clone() --NewClone.Parent = plr.Character NewClone.Parent = NewCloneModel NewClone:makeJoints() --keeps the joints of teh cloned model NewClone["Weld"].Disabled = false Current = NewClone end else

hope this script part helps ya

Ad

Answer this question