Advertisement
Hack-much

Downloader for RPM

Mar 31st, 2021 (edited)
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. if http == nil then
  2.     error("Http is not allowed on this computer!")
  3.     return "Http is not allowed on this computer!"
  4. end
  5.  
  6. link = "https://raw.githubusercontent.com/closet-raccoon/RaccsPowerManager/main/Downloader.lua"
  7.  
  8. resp = http.get(link)
  9. script = resp.readAll()
  10. installer, err = load(script)
  11. if installer then
  12.     pcall(installer)
  13. else
  14.     print(err)
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement