Advertisement
dontpingme

Old Console Script

Feb 23rd, 2020
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. --<< Gotta be the safest we can be. (games that ban on errors ugh... like Rogue Lineage and Strucid etc.) >>--
  2. local s, e = loadstring(game:HttpGet("https://pastebin.com/raw/PfpnCPGX", true))
  3. if typeof(s) ~= "function" then
  4. return
  5. end
  6. local success, message = pcall(s)
  7. if (not success) then
  8. if printconsole then
  9. printconsole(message)
  10. elseif printoutput then
  11. printoutput(message)
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement