How do i make a block regenerate when I break it?

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Merrical

VIP
Jul 27, 2020
132
14
18
17
somewhere
forums.skunity.com
the command i'm using:
on break of coal ore:
set block at the break of coal ore to coal ore
send "&9Yay" to player

Isn't working anyone know why?
[doublepost=1595889091,1595888969][/doublepost]the
"send "&9Yay" to player" is just so i know it works. it does
 
Last edited:
Try
Code:
on break of coal block:
    set event-block to coal block
    send "&9Yay" to player

If this is not working, try
Code:
on break of coal block:
    set the block at event-block's location to coal block
    send "&9Yay" to player
 
here
[doublepost=1595974495,1595974449][/doublepost]on break of coal ore:
send "&8'Breaking Coal Ore'" to player
wait 1 tick
set block at location of event-block to coal ore
[doublepost=1595974529][/doublepost]you could also replace the "send" to "do nothing"
 
Status
Not open for further replies.