I am making a gun and I need it to make it FE. Inorder to do that, I must do :GetMouse() from the server. How do I do this?
If you want to make a gun for FE then you are probably using Remote Events and through the remote event fireserver(Mouse.Hit) on a local script and then in the serverscript the first parameter is always a player so it would look like
Local Side
Remote:FireServer(Mouse.Hit)
Server Side
Remote.OnServerEvent:Connect(function(player,Mouse) print(Mouse.Position) -- You got your mouse end)