How to continue executing the code with a loop in process?
How can I do that while the loop is running, make a broadcast that says Hello? (example)
code_language.skript:
loop 100 times:
show 30 of enchantment table particle at location of {_loc} offset by 0.0, 0.0, 0.0 at speed 5
wait 1 tick
broadcast "Hello"
# And more...
How can I do that while the loop is running, make a broadcast that says Hello? (example)