This will make the abbreviation:
local abbreviation = ''
for i, v in pairs(tostring(os.date("%Z")):split(' ')) do
abbreviation = abbreviation.. v:sub(1,1)
end
print(abbreviation)
This will make the abbreviation:
local abbreviation = ''
for i, v in pairs(tostring(os.date("%Z")):split(' ')) do
abbreviation = abbreviation.. v:sub(1,1)
end
print(abbreviation)