Let me explain.
Let’s say I have a function called sup()
I want to call this function with delays…
local timer = timer.performWithDelay(myDelayValue,sup,-1)
Now, I want myDelayValue to be halved after every execution of the function…
For example, if myDelayValue is 40 seconds, after the function is executed once, the next one should be executed after 20 seconds, and the following after 10 seconds, and 5, and 2.5…