for name, basicDetails in pairs(targets) do
local count = count+1
print(name)
if (tostring(name) ~= "IWinGI" or "NateFlax" or "Joseph3262" or "101Alf101") then
local moreDetails = prox.getTargetDetails(name)
table.insert(tFound, name)
tFound[count] = {}
table.insert(tFound[count], moreDetails.Position["X"])
table.insert(tFound[count], moreDetails.Position["Y"])
table.insert(tFound[count], moreDetails.Position["Z"])
end
end
print(tFound[count][1])
The last line just prints an empty line....But if you put the print line inside the loop, it will print the value!












