Current time
Add text a connector and set the value to “code” and paste the following code:
const now = new Date()
const hourNow = now.getHours();
const minutes = now.getMinutes()
return `${hourNow} : ${minutes}` // or any relevant text formattingThis will change the text layer selected and switch the value the current time of the viewer.

