dont even know how to start
Use a Weld
between the Torso and one of the parts in the Model
.
Here is some example code for welding two parts together.
-- The two parts we want to weld together local partA = game.Workspace.PartA local partB = game.Workspace.Model.PartB -- Make a new Weld and Parent it to PartA. local weld = Instance.new("ManualWeld", partA) -- Get the CFrame of PartB relative to PartA. weld.C0 = partA.CFrame:inverse() * partB.CFrame -- Set the Part0 and Part1 properties respectively weld.Part0 = partA weld.Part1 = partB
use welds
Closed as Not Constructive by RubenKan
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?