How to check what day it is

My question is simple, how can I check what day it is?

I want to know how to check if it is Monday, Tuesday, Wednesday, etc.

Any help is appreciated.

os.date, returns the day, year, yday and all sorts of cool information you can mess around with.

https://developer.roblox.com/en-us/api-reference/lua-docs/os
image

1 Like
print(os.date("%A"))
print(os.date("%a"))

these two lines should help

1 Like