How can i make this smoother?

The tween is jamming at the end of the tween, how should i do it?

robloxapp-20220518-2106358.wmv (646.0 KB)

code?
and which Enum.EasingStyle did you use?

1 Like

i think the problem is that your tweening the character on the server side and the character is a physics based objects owned by the client so the client is filling in the gaps making it jittery

i would recommend using AlignPosition or VectorForce to move the character and it should be done in a localscript so that its responsive

maybe this video might help

1 Like

none, I just used the cframe thingy

		local Tween = TS:Create(HumRP,TweenInfo.new(2),{CFrame = HumRP.CFrame * CFrame.new(0,58,0)})
		
		Tween:Play()