So, basic, a player clicks somewhere, and I need to get the Vector3 of where they are clicking?..
Mouse.Hit is the CFrame of the mouse.
If we take a look at a CFrame's properties, we will see that the p
property leads to its Vector3.
So, Mouse.Hit.p
is the Mouse's Vector3 value.