How would I get a players time zone like EST

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)
2 Likes