Advertisement
Axow01

Untitled

Jan 12th, 2021 (edited)
894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. local component = require("component")
  2. local hologram = component.hologram
  3. local args = {...}
  4. local test = true
  5. local multiply = 1
  6. hologram.clear()
  7. local value = 1
  8. local value1 = 1
  9. local value2 = 1
  10. local loopLayers = 0
  11. while test == true do
  12.    
  13.     hologram.set(tonumber(value + multiply), tonumber(value1), tonumber(value2), true)
  14.     multiply = multiply + 1
  15.     if multiply == 46 then
  16.         multiply = 0
  17.         value2 = value2 + 1
  18.         loopLayers = loopLayers + 1
  19.         --hologram.clear()
  20.     end
  21.     if loopLayers == 45 then
  22.         loopLayers = 0
  23.         value = 1
  24.         value1 = value1 + 1
  25.         value2 = 1
  26.     end
  27.     os.sleep(0.1)
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement