Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local lastSysTime=0
- local lastdiff=0
- timer.Create('A',3,0,function()
- local diff=SysTime()-lastSysTime
- print("Delay Delta: "..(math.Round((diff-lastdiff)*100)*0.001)..'s \tDiff: '..(math.Round(diff*100)*0.001)..'s')
- lastdiff=diff
- lastSysTime=SysTime()
- end)
Add Comment
Please, Sign In to add comment