KananGamer

[TFM-LUA] Delay

Mar 19th, 2017
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. --[[
  2.     Author: Nettoork#0000
  3. ]]--
  4.  
  5. local timer = os.time() + 5000;
  6. ui.addTextArea(1, '', nil, 200, 200, 200, 200)
  7.  
  8. eventLoop = function()
  9.     if timer < os.time() then
  10.         ui.removeTextArea(1)
  11.     end
  12. end
Add Comment
Please, Sign In to add comment