Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-6

How To Make A Timer? [closed]

Asked by 9 years ago

How do you make a timer script and when the time is up it activates another script?

1
This is not a request site. Show your effort and we will help you fix errors, but we will not create everything for you. Research first, try making a script. If it doesn't work, post it here and give us the error if any. LetThereBeCode 360 — 9y
0
Use wait(?) and ? = How many seconds it should wait. Vezious 310 — 9y

Closed as Not Constructive by TurboFusion, ChemicalHex, and Perci1

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?

1 answer

Log in to vote
0
Answered by 9 years ago

First off, this isn't a request site. You need to have code for others to help you with.

Anyway, this is an example of how you could go about doing what you asked.

What you probably want to do, rather than starting another script, is just continuing on with code.

print("start!")

wait(5)

print("five seconds later...")

What that will do is put start! into the Output window, and then five seconds later, put five seconds later... into the Output window.

Good luck! I hope this helps.

Ad