Why does my code keep asking me for an expression?
Im trying to make a timer so that when 15 seconds pass, my character will ask for help from the player. It however, keeps asking for an expression, i dont know whats happening or why its happening
Heres my code for reference (im new)
init = function()
//timer of the custcene seconds = 15 time = 1
end
update = function()
//make the timer tick if seconds -= 15 then seconds -= time end
if seconds -= 0 then screen.drawText("Hello...?", -150, 75, <'#000000'>) end
end
draw = function() screen.clear
end