Do os.date scripts run even when server is offline?

If I have the following:

if time == 24 then -- Time uses os.date
print("Does stuff")
end

will it run regardless of when the server is online or not? If not, how will I be able to achieve that? Cause I would like an event happening every day that hour, and I am trying to find a way how.

No, it will not run as the server is not there for the script to run on.

if you wanted to do that, you could get if the time changed and then make an event happen. You could just have a script in every server to check.

Alright, thanks for the help! ^^

The entire solution on what kind of action you want happening every hour. What do you need to do every hour that even needs to work when no one is there to see it?