Answered by
8 years ago Edited 8 years ago
There are a couple.
I don't know why you would want to use any of these other methods, but I'll go over them anyways.
The first idea is using the Delay Function
. Here's the link to the wiki page about the delay function. An example would look like this,
1 | script.Parent.Touched:connect( function (part) |
Here's a short gif of this script in action.
Another is to use the Spawn Function
. This works similarly to the first method, but you can't pass the amount of time you want to wait into the function. This can easily be done with a wait, but it's worth noting.
1 | script.Parent.Touched:connect( function (part) |
I hope that gives you some insight, and that this answer was what you wanted.
Good Luck!
If I helped, please don't forget to accept my answer!