Advertisement
Guest User

Untitled

a guest
May 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.23 KB | None | 0 0
  1. function Start() {
  2.     // start the missile checker function:
  3.     MissileCheck();
  4. }
  5.  
  6. function MissileCheck() {
  7.     while (true) {
  8.         yield WaitForSeconds(1);
  9.  
  10.         // any code here will execute once per second.
  11.  
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement