Hello!
I need some feedback regarding a timer for a round-based system. I was thinking I could use 1/10 seconds and fire client every 1/10 seconds but I am worried it will affect performance/exhaust script/remote execution time. Do I have to worry about it or no?
So for example, if I did:
for minutes = timerTime - 1, 0, -1 do
for seconds = 59, 0, -1 do
for tenthSeconds = 9, 0, -1 do
wait(.1)
-- and then fire all clients here
end
end
end
would it cause any problems, either from the server or the client?