Guest User

Untitled

a guest
Jan 19th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. if not script.Parent:IsA("Script") then
  2.     script:clone()
  3.     script:clone().Parent = script
  4. else
  5.     tables={}
  6.     globali = 1
  7.     t = 1
  8.     time = 0
  9.     cycle = 1
  10.     print("current table: 1")
  11.     while true do wait()
  12.         local k,kk = pcall(function()
  13.             if tables[t]==nil then tables[t]={}end
  14.             for i = 1, 500000 do
  15.                 globali = i
  16.                 table.insert(tables[t],"lol")
  17.             end
  18.             cycle = cycle+1
  19.         end)
  20.         if not k then
  21.             print(kk.." @ tables: "..t..", cycle: "..cycle..", "..globali.."/500000 hunks")
  22.             globali = 1
  23.             t = t+1
  24.             cycle = 1
  25.             print("current table: "..t)
  26.         end
  27.     end
  28. end
Add Comment
Please, Sign In to add comment