Skip to content

Instantly share code, notes, and snippets.

@ItsHiatus
ItsHiatus / scheduler.lua
Last active April 15, 2023 16:46
task scheduler test
-- Run in LocalScript context.
-- Move mouse around to see Input event ordering in the output as well.
local RunService = game:GetService("RunService")
local UserInputService = game:GetService("UserInputService")
local lastT = os.clock()
local function FmtTime(event)
local t = os.clock()