Right-click remove block

  • 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 community!

    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!

lateeagle

Active Member
Jan 29, 2025
104
8
18
How can I make it so when you right click an iron door with a tripwire hook, it breaks the door.
 
How can I make it so when you right click an iron door with a tripwire hook, it breaks the door.
Python:
on right click on iron door:
    if held item of player is tripwire hook:
        cancel event
        play sound "minecraft:entity.zombie.attack_wooden_door" at event-block to players
        if block under event-block is iron door:
            set block under event-block to air
        else:
            set event-block to air