I can`t fined the problem pls help me

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

Dennis12_op

Member
Apr 1, 2020
18
0
0
23
short skript pls help fast

Code:
on break of stone:
 make console execute command "minecraft:give %player% minecraft:stone 1"
 cancel event
 
better do this
Code:
on mine:
    cancel event
    set event-block to air
    give event-block to player
    if event-block is stone:
        set event-block to air
        give cobblestone to player
 
1. What's the problem? We are not here to guess.
2. What are you trying to do?
3. Please don't use useless tags >_>
 
Try this:


Code:
on break:
  if event-block is stone:
    give player 1 stone
    cancel event
 
Status
Not open for further replies.