local http = game:GetService("HttpService") local t = '[{"src":"Name00156 00144 034 034 034","src":"Name00256 00144 034 034 034","src":"Name00256 00144 034 034 034"}]' wait(2) local tab = http:JSONDecode(t) print('printing table') I = 0 for i,v in pairs(tab[1]) do I = I + 1 print(v .. " num = " .. I) end
It only outputs the first value and not the other. What am i doing wrong?