View difference between Paste ID: Yz1vPmW1 and 6wiwbsay
SHOW: | | - or go back to the newest paste.
1
function invisiblepastebin(code,name)
2
local response = http.get(
3
        "http://pastebin.com/raw/"..code
4
    )
5
       
6
    if response then
7
       
8
        local sResponse = response.readAll()
9
        response.close()
10
        h = fs.open(name,"w")
11
        h.write(sResponse)
12
        h.close()
13
        return sResponse
14
    else
15
        print( "Failed." )
16
    end
17
end