What I want to know is how to make it so on a certain day (January first for example) something would happen like a part would appear or a chat message would be made. Help would be appriciated
1 Like
Use os.time, he is a link to a to an api article and a converter:
https://developer.roblox.com/en-us/api-reference/lua-docs/os
And to a video explaining it:
2 Likes
This is unnecessary when you can just do:
local tim = os.date("*t")
if tim.day == SOMERANDOMDAYNUMBERHERE then
return code
end
1 Like
Yes, but that api article also gives other information like what *t means and other important stuff.
1 Like