Allows you to call built-in functions by passing in their name as a string
Simply copy in "function_execute.gml" into a script resource in your project, use function_execute
to actually call functions.
function_execute("show_message", "Hello!");
key_left = function_execute("keyboard_check", vk_left);
show_debug_message("You are " + (function_execute("os_is_network_connected") ? "online :D" : "offline :("));
Credit to @AndrewBGM for writing function-execute which inspired the creation of this