Advertisement
Guest User

PauseKawa - 10+ Minecraft Build Ideas Pirates

a guest
Feb 22nd, 2023
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Set the nearest armor stand invisible:
  2. data modify entity @e[type=minecraft:armor_stand,sort=nearest,limit=1] Invisible set value 1b
  3.  
  4. # Set the nearest armor stand visible back:
  5. data modify entity @e[type=minecraft:armor_stand,sort=nearest,limit=1] Invisible set value 0b
  6.  
  7. # Kill the nearest invisible armor stand (they are invulnerable when invisible):
  8. kill @e[type=minecraft:armor_stand,sort=nearest,limit=1,nbt={Invisible:1b}]
  9.  
  10. # Give yourself an invisible item frame:
  11. give @s item_frame{EntityTag:{Invisible:1b}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement