Can I have a quick hand with this code please?

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

MonkyD

Member
Aug 2, 2024
1
0
1
45
on place of torch:
if any block within 5 meters of torch is spawner:
wait 10 seconds
set torch to stick
 
do instead
``
Code:
on place of torch:
 loop spawners in radius 5 around event-block:
  wait 10 seconds
  set event-block to stick
but you cant set it to a stick because stick is not a block
 
Code:
on place of torch:
    if any block within 5 meters of torch is spawner:
        wait 10 seconds
        set event-block to air
        drop stick at event-block

Havn't tested this but its something like this