Disapearing block

Started by renamamiya on

Topic category: Help with Minecraft modding (Java Edition)

Joined Sep 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Disapearing block

I'm trying to make a block disappear like the ice frost walker makes, is there any way to make a block like this?

I am modding version 1.20.1

Joined Feb 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
you would need a clock to…
Mon, 10/06/2025 - 02:23

you would need a clock to check how long the block has been placed and then delete the block

Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Give the block a tick rate…
Mon, 11/10/2025 - 16:20

Give the block a tick rate so it ticks once per second, enable nbt block data for the block, then on update tick make that nbt go up by nbt value + 1 and when it reaches 10, break the block.