Delay Screen Change

Hi - Quick Question.

I’m trying to delay a scene change being caused by a function. How do I add the two below together?

timer.performWithDelay

to

director:changeScene(“pause”) [import]uid: 32061 topic_id: 7061 reply_id: 307061[/import]

local function start()
director:changeScene(“pause”, “fade”)
end

–Start Program
timer.performWithDelay(2000, start) [import]uid: 11809 topic_id: 7061 reply_id: 24796[/import]