Attempting to index local 'Player' (a nil value)?
Asked by
6 years ago Edited 6 years ago
I've been at this for a while, but I don't seem to get it. It doesn't add +1 to the SP value, am I doing something wrong?
01 | local text = script.Parent.Parent.Parent.Frame 2. TextLabel |
02 | local PointsService = game:GetService( "PointsService" ) |
03 | local button = script.Parent |
05 | button.MouseButton 1 Click:connect( function (Player) |
07 | script.Parent.Sound:Play() |
08 | button.Position = UDim 2. new(math.random( 4 ), math.random( 4 ), math.random( 4 )) |
09 | Player.leaderstats.SP.Value = Player.leaderstats.SP.Value + 1 |
Everytime I click the button, the message,
"16:25:22.013 - Players.meteorcrasher118.PlayerGui.ScreenGui.Frame.TextButton.Script:9: attempt to index local 'Player' (a nil value)"
keeps appearing.