Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function try(strcodePre, except)
- local result, output = pcall(function()
- return load(strcodePre, nil, nil, _ENV)()
- end)
- if not result then
- return load(except, nil, nil, _ENV)()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement