Hello,
I'm trying to make a block that can be placed only horizontally, like only on the side faces of a block.
I could easily make block that can only be placed vertically with :
It would be more for adventure gamemode than survival gamemode, there will be no utility for that if it was for survival mode
I'm trying to make a block that can be placed only horizontally, like only on the side faces of a block.
I could easily make block that can only be placed vertically with :
code_language.skript:
on right click:
if player is holding plank:0:
if name of player's tool is "&fStructure de mur":
if block above is air:
set block above clicked block to plank:0
remove 1 of player's tool from player's tool
It would be more for adventure gamemode than survival gamemode, there will be no utility for that if it was for survival mode