@TylerW
exit status 203 basically means: "no such file or directory"
It seems your nginx has been uninstalled (or reinstalled in a different location., but seeing how it cannot find nginx -t I don't think so)
The su root bothers me a bit, log in to SSH again, use su root yourself to change to the root user, and use the history command there as well to see what has been done.
Line 60 by the way was very dangerous and should never be done by someone who does not know what he's doing:
// shortened a bit
apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y;
curl --silent --location https://manage.runcloud.io/script/installer/03IIOz0sfLGH9R0GdHkPTrtMAD1531248913ns6tBiCZGrDuY5WJgDuOQLZQhG6MaSeSjklfdsjaklSDJFIlsdfsaklScGIQO0zcRi0AN/7X77cGB9L7Do2w6XrPx3nj5661nUzLifGQLjdoflBKiXs3efsjk32kjsdkjflUlMcCx7C0HWiRsh38xy913omOPbKJBzH08tofml4QTqdO4eaMQ16WlSHWfddfja39j2lkmafdsa324239kOZYfXB4Dn6i0ziVBOfdsfKiF | bash -;
The first tells the system to update all installed packages, forces it to use the default option for replacing your configuration files, if there is no default option, it uses your current configuration files for any package that gets updated and clicks Yes on any question asked during install.
This might have corrupted some of your installed software because the new updated version is expecting config options that are now not set, or even worse, it's default option was to overwrite your config with the new default one.
The second line has downloaded a script and ran it, I tried downloading it, but it now gives a 404, so no idea what the script did exactly.