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

how do you add an amount on to a value?

Asked by 3 years ago

for a leaderstat im trying to add for a simualtor how do you do it

2 answers

Log in to vote
0
Answered by
sngnn 274 Moderation Voter
3 years ago

.Value should be pretty straightforward. It gets the value of, well, a value. You can use any math function on values. It was literally that simple.

0
yes but how cjkizzy286 40 — 3y
0
You have values in your leaderstats, right? sngnn 274 — 3y
0
yes cjkizzy286 40 — 3y
0
The .Value property gets the number of those values. sngnn 274 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

let me show you a example of adding value

local value = -- Your value instance
value.Value = 100 -- This will set the value to 100
value.Value = value.Value + 200 -- Add to your value, now it should be 300

Notice:

local Value = script.Parent.Value
Value = 100 -- wrong, don't do this, it won't work
local Value = script.Parent
Value.Value = 1-- - Yep

Hope that helped

Answer this question