Hello, I have been having a issue, Im making a round system, and I have a for loop in one of the function, the first time the function is called, everything wokrs fine, but the next time, for some reason, the first iteration of the for loop does not call remote events, this is the code:
for i = StartTime, 0, -1 do -- Countdown Timer - Loop
BeepRE:FireAllClients()
status = "Starting In: " .. tostring(i)
warn(i)
CountDownTimerRE:FireAllClients(i)
wait(1)
end
This is inside a Server Script by the way. The reason I know its not firing is because i have a pritnt inside the Remote Event which is not firitng on that one iteration, as well as for the code to just not be working. This applies to both of the Remote Events by the way.