if Data4[14] then return Data4[14] endThats what I want the program to see
Closest I can get to that is
function checkData(y, x)
local temp = "Data"..y.."["..x.."]"
if temp then
return temp
else
return false
end
end
Data3 = {}
Data3[5] = "hello"
if checkData(3, 5) then
print(checkData(3, 5))
end
Ofc its churning out Data3[5] not "hello"
So how do I churn out "hello"?











