I would like to make a script that checks the day of the week, I’ve seen it done before and I was wondering how. I am planning on using it in my game.
You can use os.Date for this, this function was specifically made for it
1 Like
print(os.date("%A")) -- > Thursday
2 Likes
I have a question, does it use the player’s time and date?