How can I delay something before I call a function? If I had this code:
local function mySecondFunction() --code code code, and more code end local function myFunction() --code code code --delay... how to do that? mySecondFunction() end
How would I delay before I called mySecondFunction?