I need help decoding json
my current code:
local json = game.HttpService:GetAsync("jsonlink") --removed local decoded = json:decode()
it isnt working
You need to use the decode function of HttpService. Example:
local t = game.HttpService:JSONDecode(json)
Use HttpService's JSONDeocde function.