of     1   

GeoVolcano
#168930846Monday, July 27, 2015 1:10 AM GMT

So when I get the error message in local console it says the User is Offline. But due to this it prevents any following code from being executed in the server-side script. Anyone know of a way to continue the following code?
instawin
#168930996Monday, July 27, 2015 1:11 AM GMT

you mean so that error won't completely stop your script? pcall
instawin
#168931057Monday, July 27, 2015 1:12 AM GMT

GeoVolcano
#168931896Monday, July 27, 2015 1:21 AM GMT

so I guess it's time to learn pcall.
instawin
#168932398Monday, July 27, 2015 1:27 AM GMT

it's honestly not that hard it just calls the function you provide in protected mode pcall(yourfunction(arguments if you need any for your function as well)) but what it does first is returns true or false, depending if your function ran successfully it also returns anything that your function returns upon calling it if it happens to error, it will return false, and the error message local success, errorMsg = pcall(yourFunction()) if success then print("all is fine in the world") else print("rip: "..errorMsg) end

    of     1