Help

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

KhoaMiTom

Member
Mar 24, 2024
3
0
1
How can I made the zombie which I spawned to walk (follow) the path I created like under it a bedrock or something
 
I recommend using the Citizens2 plugin and not using Skript for that. Though, you could make it where it can't step on anything but bedrock.
Code:
on step:
    if entity is a zombie:
        if block is not bedrock:
            cancel event
        else:
            #continue

This code is untested, so let me know if it works!