Hello, recently ive stumbled upon motor6d and what it offers. Straight to the point, the issue is:
Im trying to make a motor6d C0 point towards a Vector3 position
Ive tried things such as:
simply using cframe look at with no modifications
rHip.C0 = CFrame.lookAt(rHip.C0.p,ray.Position)
converting ray position to object space
rHip.C0 = CFrame.lookAt(rHip.C0.p,CFrame.new(ray.Position):ToObjectSpace(rHip.C0).Position)
and finally attempting to try and understand how and what motor6d.Transform does and in my case it did practically nothing.
Another issue i have stumbled upon is if u try to change the hip c0 while an animation plays it will make it try to come back, heres an example gif with
rHip.C0 = CFrame.lookAt(rHip.C0.p,ray.Position)
inside a run service stepped function
https://gyazo.com/b552781924ab5367f3b13c9c2d7c01ad
and heres whats happening on the server at the same time
https://gyazo.com/cd5d43582b4e10123e4d0bda20b4c7ed
Thanks in advance.