force run

Im curious if there is a way to force run a project regardless on wether there is a problem or not.

you can read the project into a text variable t and then pcall(loadstring(t)()) should do it.

@Jmv38, I’m familiar with loadstring, but what is pcall?

@JakAttak pcall is error checking/handling afaik

pcall is protected call: your program doesnt stop if there is an error.