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

Is there a way to clone a group of parts?

Asked by 6 years ago

I have a rocket launcher weapon, but the rocket itself, which I modeled, is composed 3 parts (in a group). I would union the parts, but I get an error that the triangle count is too high. My rocket launcher script, the standard Roblox rocket launcher script, works by cloning the rocket then firing the clone, however, it doesn't work with my rocket group and I can't find a way around it. Any ideas?

1 answer

Log in to vote
0
Answered by 6 years ago

if you are cloning from any sort of storage service to the wrokspace, do mind that surface joints are not saved because they are controlled by the workspace. either put a sort of autoweld script in the tool, or use MakeJoints:

local a = something:Clone()
a.Parent = workspace
a:MakeJoints()
Ad

Answer this question