Advertisement
yurtle

hologram

Nov 19th, 2022 (edited)
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local component = require("component")
  2. local hologram = component.hologram
  3. local args = {...}
  4.  
  5. hologram.clear()
  6. hologram.setScale(3)
  7. hologram.set(10, 10, 10, true)
  8.  
  9. for x=1, 48, 1 do
  10. for y=1, 32, 1 do
  11. for z=1, 48, 1 do
  12. hologram.set(x, y, z, x == y or z == y)
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement