RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a model named sign show the server time by changing the model name"
-- server script while true do local sign = game.Workspace.Sign local date = os.date("*t") local hour = date.hour local min = date.min local sec = date.sec sign.Name = string.format("%02d:%02d:%02d", hour, min, sec) wait(1) end