If I have a script in a tool, how do I find who player is?
Or if it's a server script,
local player = Game:GetService("Players"):GetPlayerFromCharacter(Tool.Parent)
Use this:
local player = Players.LocalPlayer
that is how you locate it. Tools oftenly use localscript so use localscript to use the line above.