I've seen wait used as a method a few times, I was wondering if any of you can explain how this works to me. Thanks. (Note: I've only seen it used on events)
wait() is basically telling the computer to wait until something would happen. Example:
1 | local P = game.Workspace.Part |
2 |
3 | function onTouch(part) |
4 | P.Transparency = 0 |
5 | wait( 2 ) --"Oh! I see the wait symbol, that means I have to wait 2 seconds until I do something! |
6 | P.Transparency = 1 |
7 | end |
8 |
9 | --and other function stuff here |