How to get the current month and date?

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.

have you looked at this?

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

local Date = os.date("%a %d")

Mark as answer if this works! :slight_smile:

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")
3 Likes

The new code I used :
local Date = os.date("%b %d")
print(Date)

2 Likes