making a text to be the date of the day in real life roblox code example
Example: making a text to be the date of the day in real life roblox
while true do
local text = "<%H:%M%p>"
local timestop = os.time()
local result = os.date(text, timestop)
script.Parent.Text = tostring(result)
wait(0.05)
end