Explanation: lookvector is the forward part of a cframe. How would i look BACKWARDS from a Cframe? This is what i tried:
1 | local ray = Ray.new( |
2 | script.Parent.Position, |
3 | script.Parent.CFrame.lookVector/ 200 |
4 | ) |
It didn't work.
The lookVector is already facing forwards, use the -
unary negation operator to reverse it.
1 | script.Parent.CFrame.lookVector * - 1 |