How do I fix this stuttering?

Im not trying to ask anyone to do anything for me, I just don’t understand how to use what you gave me. You have given me pretty vauge answers to my questions and Im probably going to give up at this point and figure out how to use BodyGyros for this.

Plus, just throwing code at me isn’t really going to help if I don’t really get what it does. Youve said it aligns two vectors, but how? What part of the code aligns them? How do I calculate the vectors and such? What do the functions and stuff in your code even mean? Faux? scalar? getScalar()? getNormal()? getRotationBetween()? I don’t know what the code you put in them is, so it can’t help me much because they are obviously needed to get an effect like I wanted. Where is attractor referenced in the script? What is attractor?

Can you slow down the tween(to like 3 or 4 seconds) and see where exactly the stutter happens?

Sure. Let me set it to 3-4 seconds and record it rq.

Hmm, the stuttering happens when the character trys to rotate on its x axis. Try lifting the root part just a bit off the ground.

That would easily be a fix, yes, but I would prefer to not do that as I want it to look like they are still on the ground. Is there really no way to make it only tween the Y axis in that direction? That would be a solution for me…

1 Like

You have 2 options:

  1. Change the CFrame of the HRP manually every frame.
  2. Don’t tween the HRP to look up. (Tween its rotation on the Y axis only)
    Try this:
function turnCharacter(hrp,target)
	local angle =  CFrame.new(hrp.Position,Vector3.new(target.Position.X, hrp.Position.Y, target.Position.Z))
	
	local TS = game:GetService("TweenService")
	local info = TweenInfo.new(1)
	local goal = {}
	
	goal.CFrame = angle
	
	local tween = TS:Create(hrp,info,goal)
	tween:Play()
end
3 Likes

How about changing the second parameter of the cframe.new into Vector3.new(target.Position.X,HumanoidRootPart.Position.Y, target.Position.Z)

1 Like

IT WORKS!!!
WOOOOO!

Tysm, and thank you to everyone else who help me here. I knew there had to be a way, thank you guys!

2 Likes

Also, your response works too, I can’t mark both of you the solution though. Ty!

1 Like