How would I be able to make an event happen if a player were to look at something? An example would be like a player looking at a picture that causes their vision to blur, etc.. Would this deal with LookVectors or something?
Yes, ClickDetectors
have an event that triggers when the mouse is hovered over the object.
1 | local Click = -- your ClickDetector -- |
2 |
3 | function Click.MouseHoverEnter:Connect( function () |
4 | -- Your Code when the player is looking at it -- |
5 | end ) |
6 |
7 | function Click.MouseHoverLeave:Connect( function () |
8 | -- Your Code when the player looks away from it -- |
9 | end ) |