"unable to convert undefined to a number" error HTML5

Misi

Member
I get this error when I'm trying to run my game. I ran it on multiple browsers and tried to research the problem but for other people after the yyGetInt32([undefined]) line there is the GML function that is causing the issue but in my case it says _Fa([undefined]) and I don't know where to look for the source of the problem.

Code:
Unhandled Exception - Uncaught { message : "unable to convert undefined to a number", longMessage : "unable to convert undefined to a number", stacktrace : [ "function _0_("unable to convert undefined to a number")
","function yyGetInt32([undefined])
","function _Fa([undefined])
","function _M6([instance], [instance])
","function(1798, 0, [instance], [instance])
","function(1798, 0, [instance], [instance])
","function(1798, 0)
","function _NN2(32, [unknown])
","function _OR3()
","function _nR3(2492.796)
" ], script : "", line : -1 } in file undefined at line undefined
I highly appreciate it if anyone has an idea of what is causing the issue.
 

YellowAfterlife

ᴏɴʟɪɴᴇ ᴍᴜʟᴛɪᴘʟᴀʏᴇʀ
Forum Staff
Moderator
Run in debug mode so that you can see where in your code this originates from (as names will be preserved).
 
Top