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

after function how would you add +1 leaderstats to the player?

Asked by
OFF_S4LE 127
3 years ago
Edited 3 years ago

Like you want to give a player a leader stat everytime they click a part/gui

mousebutton1down(function()
--[giving the player 1 leader stats when they click]

I'm not good with stuff like this so help would be appreciated :D

0
this website is for scripting help, NOT for script requests. there are plenty of tutorials on leaderstats zadobyte 692 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago
-- In a local script in the gui

game.ReplicatedStorage.GiveMoney:FireServer() -- Change "GiveMoney" to the name of your event in ReplicatedStorage

--[ I am also guessing you have leaderstats.

In a server script in ServerScriptService --]

game.ReplicatedStorage.GiveMoney.OnServerEvent:Connect(function(player)
player.leaderstats.cash.value = player.leaderstats.value + 100 -- Change cash to your leaderstat and 100 to what amount you want.
end)

Using events btw.

0
This may not be the way you want it, idk. EH2019SIT 78 — 3y
Ad

Answer this question