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