3 by 3 hole

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

Status
Not open for further replies.

Bixia

Member
Mar 31, 2020
3
0
0
Can you make a 3x3 hole using skript so that when you place a block the blocks under neath it will disaper and it will be 3 x 3
 
I think you can use something like this:
Code:
on place:
    set {_loc} to location of event-block
    remove 1 from y-coordinate of {_loc}
    set block at {_loc} to air
    add 1 to x-coordinate of {_loc}
    set block at {_loc} to air
    add 1 to z-coordinate of {_loc}
    set block at {_loc} to air
But I'm sure there's a better way to do that.
 
Status
Not open for further replies.