Hi there!
Currently, I use GripPos(GripPosition) property of the tool to change the tool position relative to the player even when welded. The problem with this is that it’s not as smooth as i need it to be! Especially for a basketball dribble style game.
What are alternatives to this? Is there a way to do the exact same using mover constraints, lerping, or tweening?
Don’t use tools for this. Trying to rip the tools of their default behavior for a single built-in feature they provide (equip on touch) is not worth the trouble and the headache.
Actually, you can use Tools for this behaviour. If you connect a Motor6D to the Tool Part (Basketball) and the HumanoidRootPart, you can achieve this result without needing to use any ToolGrip values. The reason this should work is because the HumanoidRootPart always faces upwards as it’s mainly used for controlling physics, and cannot be influenced by Animation. This doesn’t count towards Parts connected too it however. The Tool could be used as a simple Equip system without much work. However, for your case, you may not want the ball to disappear so it’s probably more efficient to use the tool either as an Equip framework or make a dedicated system not bound by Tools.