Log Pulling Problems

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I want a simple log pull
  2. What is the issue? Include screenshots / videos if possible!
    Im Using a BallSocketConstraint but its being weird and not letting you move and making you go far away
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Ive tried Ball Socket Constraints And looking it up on the forums
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
workspace.ChildAdded:Connect(function(Thing)
	
	local Att1 = script.Parent.Attachment
	
	local Att2 = Instance.new("Attachment")
	Att2.Name = "Att2"
	Att2.Parent = Thing.HumanoidRootPart
	Att2.Position = Thing.HumanoidRootPart.Position + Vector3.new(3,0,0)
	
	local BSC = Instance.new("BallSocketConstraint")
	BSC.Name = "BSC"
	BSC.Parent = script.Parent
	BSC.Attachment0 = Att2
	BSC.Attachment1 = Att1
	
end)

It needs too pull the “log” (In this case a part) freely like your dragging it holding 1 side

Just bumping this sorry its been a while :slight_smile:

Anybody got anything? (Please help im not sure i can figure this out by myself)

Maybe look into drag detectors

I fixed it with rope constraints ty :heart:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.