Is it possible to find a mouses position without a tool? I know with a tool you can do mouse.hit.p or mouse.Target
The Player object has a GetMouse method, which returns the PlayerMouse. However, you can only use this in a Local Script.
To answer your question specifically, the following code can be used:
local mouse = game.Players.LocalPlayer:GetMouse() local position = mouse.hit.p