Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local component = require("component")
- local hologram = component.hologram
- local args = {...}
- local test = true
- local multiply = 1
- hologram.clear()
- local value = 1
- local value1 = 1
- local value2 = 1
- local loopLayers = 0
- while test == true do
- hologram.set(tonumber(value + multiply), tonumber(value1), tonumber(value2), true)
- multiply = multiply + 1
- if multiply == 46 then
- multiply = 0
- value2 = value2 + 1
- loopLayers = loopLayers + 1
- --hologram.clear()
- end
- if loopLayers == 45 then
- loopLayers = 0
- value = 1
- value1 = value1 + 1
- value2 = 1
- end
- os.sleep(0.1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement