Ok. I making timer can be seen all player on server.


This is repeat script and numbervalue in timer.
It made by other user, and it looks perfect…
But I entered print script, it not work when seconds = 0.
uh… Why?
Ok. I making timer can be seen all player on server.


This is repeat script and numbervalue in timer.
It made by other user, and it looks perfect…
But I entered print script, it not work when seconds = 0.
uh… Why?
Try Seconds.Value ~= 0 or Minutes.Value ~= 0
What you feedback means? Seconds value and Minutes value are each 12, 6
Your code will work until either the second or minute is 0.
local a,b = 2,0
while a ~= 0 and b ~= 0 do
print'hi' --// Doesn't print
end
Perhaps… it means like this?

Deleted ‘Seconds.Value ~= 0’ at line 4
Oh… Ohhh!!! It working! Thx!!!
I want I understood your feedback as it is!
The correct code to use here should have been something like this but ok
--// Minutes, seconds
local m,s = 12,12
while m > 0 or s > 0 do
if s == 0 and m > 0 then
s = 60
m -= 1
else
s -= 1
end
end