I tried to send the request with hurl.it and it worked, but why doesn't this code work?
function Log(Txt)
local Tbl = {}
Tbl["TXT"] = Txt
local HS = game:GetService("HttpService")
local JSONTbl = HS:JSONEncode(Tbl)
HS:PostAsync("https://######################", JSONTbl)
end
Log("Start") |