Hello, i’m trying to print all of the words in a website but the error is : " Can’t parse JSON "
Script:
local http = game:GetService("HttpService")
local EnglishURL = "http://www.mieliestronk.com/corncob_lowercase.txt"
local englishResp = http:GetAsync(EnglishURL)
local englishData = http:JSONDecode(englishResp)
print(englishData)
Can you help me please?