I want a timer for my mini game and when it his zero a random map comes how do I make it?
To make a timer, you need to use a loop and make it so it subtracts every second. An example is right here :
for i=30,0,-1 do i = i -1 print(i) wait(1) end
You can change (1) to how fast you want the timer to countdown. Also change 30 to the max seconds you want in the timer
Closed as Not Constructive by hiimgoodpack, lukeb50, and abnotaddable
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?