Hello. Im lacking skills and it’s really hard to find any informations about this topic.
I’ve seen this Make leg face move direction and it helped me a bit for understanding how it work. I want to make the legs of the player look where he is moving like the game Write a letter or even evade or the game called “town”.
here is a visual showcase: Test - YouTube
-- I think this is a good start. But as i said im not able to go further since im not good
-- enough :sob: but i know that we need to get the orientation of the torso with (CFrame.LookAt) and face the legs where the torso is facing (i think)
local LeftLeg = script.Parent:WaitForChild('Torso'):WaitForChild('Left Hip')
local RightLeg = script.Parent:WaitForChild('Torso'):WaitForChild('Right Hip')
local CenterOfLegs = Vector3.new(0,-1,0)
local rootCFrame = script.Parent.HumanoidRootPart.CFrame
local moveDirection = rootCFrame.lookVector
while wait(.001) do
end
If you have any imformations that could help me, i would really appreciate it .