for a leaderstat im trying to add for a simualtor how do you do it
.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.
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