So, I have this table in the template:
BEST_TIMES = {}
What this does is that it saves the time for each level e.g. If I do a speedrun of level 1 it will save like this:
BEST_TIMES = {
[1] = {
Minutes = 0,
Seconds = 0,
Milliseconds = 0
--etc
}
}
The Minutes, Seconds and Milliseconds sets perfectly but when I rejoin, everything inside “1” resets to default. How am I supposed to fix this?? Any suggestion would be helpful.