workspace.Par.Size=Vector3.new(.6,.6,(workspace.Part1.Position-workspace.Part2.Position).magnitude) workspace.Par.CFrame=workspace.Part1.CFrame:lerp(workspace.Part2.CFrame,.5)
I ran that code and I want the "Par" brick to connect "Part1" and "Part2". However, I get this instead of the parts being connected. Click Here for Picture Any help would be greatly appreciated.
Your code interpolates the CFrame. The new CFrame is not oriented any differently than the two un-rotated parts. If you want to set the direction the CFrame is facing, use the two-point constructor:
workspace.Par.CFrame=CFrame.new(workspace.Part1.Position:lerp(workspace.Part2.Position,.5),workspace.Part2.Position)