Spiderman-like swings

Fixed it using .Physics:

if state == Enum.HumanoidStateType.Landed or state == Enum.HumanoidStateType.Physics or state == Enum.HumanoidStateType.Running then
				print("success")
				VF.Force = Vector3.new(0,0,0)
				VF:Destroy()
				print("destroyed")
			elseif state == Enum.HumanoidStateType.Freefall or state == Enum.HumanoidStateType.Flying then
				VF.Force = Vector3.new(0,-2000,-5000);
1 Like