The title says it all. Thank you before hand
1 Like
is this what you are looking for?
I will look at it right now but I just want to add I want it in a format like this : Jun 25
Nope, I want the month and the current date, not the time.
local Date = os.date("%a %d")
Mark as answer if this works!
1 Like
Not the week day, abbreviated month name but I think I found out how to do that! Thank you!
Then it would be:
os.time("%b %d")
4 Likes
The new code I used :
local Date = os.date("%b %d")
print(Date)
2 Likes