I have this function that is supposed to set a players Magic value to a string, but it says player is a Number value.
1 | function gameStart(player) |
2 | if player then |
3 | player.Stats.Magic = script.Parent.Parent.Parent.MagicFrame.Spinner.TextButton.Text |
4 | script.Parent.Parent.Parent.Parent:Destroy() |
5 | end |
6 | end |
7 |
8 | script.Parent.MouseButton 1 Down:connect(gameStart) |
attempt to index local 'player' (a number value)
Please help!
Because when dealing with Player Guis
you should always use a Local Script
, we can get the player using Local Player
.
1 | local player = game.Players.LocalPlayer |
2 |
3 | function gameStart(mouse) |
4 | player.Stats.Magic = script.Parent.Parent.Parent.MagicFrame.Spinner.TextButton.Text |
5 | script.Parent.Parent.Parent.Parent:Destroy() |
6 | end |
7 |
8 | script.Parent.MouseButton 1 Down:connect(gameStart) |
Good Luck!