Rope Constraint stopping body force from moving

Hey there! so, i have a script where it web swings me and i use body force to make the player move. But when i use the body force, it just freezes the player and doesn’t move.

Tested a bit in studio and found that the cause of this problem is the Rope Constraint;

Rope = Instance.new("RopeConstraint", workspace)
			Rope.Color = BrickColor.new("White")
			Rope.Visible = true
			Rope.Thickness = 0.2

			A2 = Instance.new("Attachment",PlayerMouse.Target)
			A1 = Instance.new("Attachment",Arm)

anyone know why?

heres the script for body force:

Plr.Character.Humanoid.Jump = true
				F = Instance.new("BodyForce")
				F.Parent = Plr.Character.HumanoidRootPart
				F.Force = cam.CFrame.LookVector * Vector3.new(Force,0,Force) --Force is 7000

Thanks!!

1 Like

Try parenting it last, and try increasing the Force.

Plr.Character.Humanoid.Jump = true
	F = Instance.new("BodyForce")
	F.Force = cam.CFrame.LookVector * Vector3.new(Force,0,Force) --Force is 7000
	F.Parent = Plr.Character.HumanoidRootPart
1 Like