How would I detect if the Titles and Descriptions has nil in them.
Both printed titles not nil and descriptions not nil. (I must have nil in the module.)
if NewsModule.ActiveNews == false then
NewsUI.Main.Container.NoNews.Visible = true
if NewsModule.Titles == nil then
print("titles nil")
elseif NewsModule.Titles ~= nil then
print("titles not nil")
end
if NewsModule.Descriptions == nil then
print("descriptions nil")
elseif NewsModule.Descriptions ~= nil then
print("descriptions not nil")
end
end