I am trying to make an UnionOperation instance point at the torso's direction, while keeping it's original rotation.
It's Rotations are: X: 110.063 Y: -6.758 Z: -26.422
I've tried
1 | local ROT = nil -- Rotation |
2 | local tot = nil -- Final Result |
3 |
4 | ROT = Vector 3. new(X, Y, Z) |
5 |
6 | tot = CFrame.new(CFr 1 , ROT) -- CFr1 is position, wich works |
7 | --tot (total) doesn't make it keep it's correct rotation. |
How do I fix this?