Answered by
4 years ago Edited 4 years ago
So put this in a localscript with the buttons path being where the button is.
Local script should be in starterGui, playercharacterscripts or playerscripts
1 | local player = game.Players.LocalPlayer |
3 | local remoteEventName = game.ReplicatedStorage.RemoteEventName |
5 | buttonspath.MouseButton 1 Click:Connectfunction() |
6 | remoteEventName:FireServer() |
Server Script:
(Should be in serverscriptservice)
1 | local remoteEventName = game.ReplicatedStorage.RemoteEventName |
3 | remoteEventName.OnServerEvent:Connect( function (player) |
4 | player.leaderstats.gold.value = player.leaderstats.gold.Value + 1 |
Create a remote event and place in replicated storage.
You need to fire to the server to change the value because if the client did it then the server would never know.