Wait 3 minutes

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

Harty0012345

Member
Jul 6, 2023
12
1
3
Hello, I need help.
My skript is supposed to put down red wool and leave it there for 3 minutes but mine is doing it for a few ticks...
Here is my code:
on block place:
if event-block is red wool:
set location of event-block to {_loc1}
wait 3 minutes
set event-block to air

Thank you!
 
pretty sure you cant change the location of a block and {_loc1} isn't set to anything
 
Code:
on block place:
    if event-block is red wool:
        wait 3 minutes
        if event-block is red wool:
            set event-block to air
Hi! This seems to work just fine?