You cannot get the player directly on the server with LocalPlayer, however there are some ways to get the player without it.
Method 1: PlayerAdded
This method will get a variable of the player whenever a player joins the game.
Example:
1 | game.Players.PlayerAdded:Connect( function (plr) |
Method 2: RemoteEvent
This method allows the client to send a message to the server (local script to server/normal script). Said message has arguments, and the first argument will always be the client (aka player) who sent it.
Example:
2 | game.ReplicatedStorage.Remote:FireServer() |
6 | game.ReplicatedStorage.Remote.OnServerEvent:Connect( function (plr) |