Is there a way where I can get the players time? Like actual time. AM PM stuff. Let me know I can do that.
Thanks for your help,
Is there a way where I can get the players time? Like actual time. AM PM stuff. Let me know I can do that.
Thanks for your help,
I had to do this in my game recently. You can use os.time(),
But it will be different on server and client.
Suggest going to this documentation of os.date()
:
https://developer.roblox.com/en-us/api-reference/lua-docs/os
To get the player’s time do os.date("%I : %M : %S %p")
on a local script.