This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--!strict | |
--@class RobloxEntityTypes | |
--@author Midnightific | |
--[=[ | |
@class RobloxEntityTypes | |
Contains type definitions for Roblox game entities, including characters and players. | |
Defines structures for Humanoid, Clothing, Player GUI, Scripts, and other related components. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local function is64bitclient() | |
return not tostring({}):find("0x00000000") | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true do | |
local CurrentTime = os.time() | |
local GMTOffset = 8 -- Change this to your timezone offset | |
local Seconds = CurrentTime % 60 | |
local Minutes = CurrentTime / 60 | |
local Hours = Minutes / 60 | |
Minutes = math.floor(Minutes % 60) | |
Hours = math.floor(Hours % 24) + GMTOffset | |
print(`Current time is {Hours}:{Minutes}:{Seconds}`) |