I dont know why its not working, this is how I’ve done it before. Did the code change for this or something, can someone please help?
This is my script
1 | script.Parent.MouseButton 1 Click:Connect( function (Player) |
2 | Player.leaderstats.Money.Value = Player.leaderstats.Money.Value + 1 |
3 | end ) |
It keeps saying
21:15:13.869 - Players.protectiverobos.PlayerGui.GetMoney.Frame.TextButton.LocalScript:2: attempt to index local ‘Player’ (a nil value)
The best way of doing this is to use remote events:
Make sure you insert a remoteevent into replicatedStorage.
01 | game.Players.PlayerAdded:Connect( function (player) |
02 |
03 |
04 |
05 | local leaderstats = Instance.new( 'Folder' ) |
06 |
07 | leaderstats.Name = 'leaderstats' |
08 |
09 | leaderstats.Parent = player |
10 |
11 | |
12 |
13 | |
14 |
15 | local coins = Instance.new( 'IntValue' ) |
16 |
17 | coins.Name = 'Coins' |
18 |
19 | coins.Parent = leaderstats |
20 |
21 | |
22 |
23 | |
24 |
25 | end ) |
This script is what I used to create the currency Coins (your currency can be any name)
When you have created your GUI, insert a local script into the textbutton.
1 | script.Parent.MouseButton 1 Click:Connect( function () |
2 |
3 | game.ReplicatedStorage.RemoteEvent:FireServer() |
4 |
5 | end ) |
This will fire the remote event
Now insert a script into the workspace and type the following:
1 | game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect( function (player) |
2 |
3 | player.leaderstats.Coins.Value = player.leaderstats.Coins.Value + 1 -- Make coins your currency |
4 |
5 | end ) |
This will make it every time you click the button your currency will increase by 1.
Okay, first of all: This script must be on LocalScript,
Thus, ‘player’ is an invalid variable argument function in LocalScripts!
so the script should be:
1 | local player = game.Players.LocalPlayer |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | player.leaderstats.Money.Value = player.leaderstats.Money.Value + 1 |
4 | end ) |
Hope this helps!