Just an ordinary question. Would you rather prefer or is there a better performance boost for using either delay or wait?
print("Yay")
wait(10)
print("Done")
or
print("Yay")
delay(10,function()
print("Done")
end)
Not as far as I know, but:
Wait()
stops the entire script for that time.
Delay()
doesn't stop the script, it keeps going, even if x
amount of seconds isn't up.