Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Getting an error when I'm clicking on the gui thats suppose to give me money?

Asked by 6 years ago

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

1script.Parent.MouseButton1Click:Connect(function(Player)
2Player.leaderstats.Money.Value = Player.leaderstats.Money.Value + 1
3end)

It keeps saying
21:15:13.869 - Players.protectiverobos.PlayerGui.GetMoney.Frame.TextButton.LocalScript:2: attempt to index local ‘Player’ (a nil value)

0
That change will not replicate to the server. Do it through RemoteEvents. JakyeRU 637 — 6y
0
How do I do that? Ive never used remote events. zandefear3 0 — 6y

2 answers

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

The best way of doing this is to use remote events:
Make sure you insert a remoteevent into replicatedStorage.

01game.Players.PlayerAdded:Connect(function(player)
02 
03 
04 
05local leaderstats = Instance.new('Folder')
06 
07leaderstats.Name = 'leaderstats'
08 
09leaderstats.Parent = player
10 
11   
12 
13   
14 
15local coins = Instance.new('IntValue')
16 
17coins.Name = 'Coins'
18 
19coins.Parent = leaderstats
20 
21   
22 
23   
24 
25end)

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.MouseButton1Click:Connect(function()
2 
3game.ReplicatedStorage.RemoteEvent:FireServer()
4 
5end)

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 
3player.leaderstats.Coins.Value = player.leaderstats.Coins.Value + 1 -- Make coins your currency
4 
5end)

This will make it every time you click the button your currency will increase by 1.

0
Thank you so much!!! It worked, with my datastore script. I couldnt find any other way to do it! I cant login to my account, idk why other wise I would accept it! zandefear4 90 — 6y
0
Sorry about the scripts not always showing up in text box. Sir_funnyguy 4 — 6y
Ad
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

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:

1local player = game.Players.LocalPlayer
2script.Parent.MouseButton1Click:Connect(function()
3player.leaderstats.Money.Value = player.leaderstats.Money.Value + 1
4end)

Hope this helps!

0
Thanks, it worked but it wont let me login to my account. zandefear4 90 — 6y
0
Nvm, having a problem saving. zandefear4 90 — 6y
0
Can you please Mark it as accepted? NickAtNick 163 — 6y

Answer this question