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

Can you help me with finding a variable?

Asked by 8 years ago

**I found this script for a money stat but I do not know the variable to increase or decrease the value of money, here is the script: **

print("Cash Leaderboard Loaded")


function onPlayerEntered(newPlayer)

    stats = Instance.new("IntValue")
    stats.Name = "leaderstats"

    cash = Instance.new("IntValue")
    cash.Name = "Money"       --name of currency (e.g. cash, money, resources, bucks, etc.)
    cash.Value = 1000      --starting money.

    cash.Parent = stats
    stats.Parent = newPlayer
end



game.Players.ChildAdded:connect(onPlayerEntered)

1 answer

Log in to vote
2
Answered by
Cuvette 246 Moderation Voter
8 years ago

If you want to increase it in the same script use

Cash.Value = Cash.value + 10

Or whatever number you choose

Ad

Answer this question