Advertisement
Guest User

discord.lua

a guest
Jul 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. local i = require("internet")
  2. local url = ""
  3.  
  4. local res = i.request(url)
  5. local body = ""
  6.  
  7. for chunk in res do
  8.   body = body .. chunk
  9. end
  10.  
  11. print(body)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement