Bridge with Rope Constraint Issues

Hi,

I am having issues creating a Bridge with Rope Constraints, when running I get the issue in the video, I have looked into changing the phyics of the Rope Constraints and or parts but not sure what I am doing.

Your ropes length does not equate its CurrentDistance (probably less than for this to happen)

Run this in the command console on the bottom

for i,v in workspace:GetDescendants() do
	if v:IsA("RopeConstraint") then
		v.Length = v.CurrentDistance + 0.1
	end
end