Reply to Re: Re:
If you don't have an account, just leave the password field blank.
Ok, the wait command.
The number in the wait() is the number of miliseconds the script will pause before going to the next command. You can see this commonly used between line of two people talking so the first set of text disappears for a fraction of a second before the next set comes up (just makes it look nicer).
wait(1000);
this pauses the script for 1 second.
wait(500);
wait(500);
this will laso pause it for a second, but why use two commands when you could use one?
The number in the wait() is the number of miliseconds the script will pause before going to the next command. You can see this commonly used between line of two people talking so the first set of text disappears for a fraction of a second before the next set comes up (just makes it look nicer).
wait(1000);
this pauses the script for 1 second.
wait(500);
wait(500);
this will laso pause it for a second, but why use two commands when you could use one?