So basically I want to make a part join between 2 positions (in this case it is 2 parts). So far I’ve figured out how to get the length of the part and make it so it corresponds to the distance between both parts. HOWEVER, I now need to find a way to make it so it orientates to fit between them.
local One = script.Parent.Part
local Two = script.Parent.Part2
local Part = Instance.new("Part", script.Parent)
Part.Anchored = true
Part.Size = Vector3.new((One.Position - Two.Position).Magnitude, 0.5, 0.05)