Hi, I’m reporting issues when I try to change a variable value with a timer.
Actually I’m using the following code to perform that:
local counter = math.random(100, 350) local function changeCounterValue() counter = math.random(130, 170) end tmr = timer.performWithDelay(1500, changeCounterValue, 0)
but It just doesn’t work?
Could you help me?
Thanks in advance!
