Hi, I'm basically trying to get the table in Pastebin by using GetAsync or RequestAsync but each time I executed, it keeps giving me this error line:
1 | HttpError: SslVerificationFail |
Also here's my code:
1 | local Table_ = nil |
2 |
3 | loadstring ( "Table_ = " .. game:GetService( "HttpService" ):GetAsync( "https://pastebin.com/raw/H08yzbLU" , true )) -- the error starts at here |
4 |
5 | for i,a in pairs (Table_) do |
6 | print (a) |
7 | end |