There is a loop called while true do.
I was wondering if while false do exists. if it does, what does it do?
while false do wouldn't do anything. It would simply skip over that code.
Example :
1 | print ( "Starting up!" ) |
2 | while false do |
3 | print ( "I'm working!" ) |
4 | wait() |
5 | end |
6 | print ( "Done!" ) |
Output :
Starting up! Done!
If you have any questions, concerns or just need some help with this PM me on ROBLOX!