01 | local Tool = script.Parent.Parent |
02 | local Handle = Tool:WaitForChild( "Handle" ) |
03 |
04 | Tool.Equipped:Connect( function (Mouse) |
05 | local player = game:GetService( "Players" ):GetPlayerFromCharacter(Mouse.Parent) |
06 | print (player) -- nil |
07 | Mouse.Button 1 Down:Connect( function () |
08 | print (player) -- nil |
09 | wait( 1 ) |
10 | end ) |
11 | end ) |
doesnt work