Im board and I want projects

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

Meggy_Mode

Active Member
Aug 30, 2024
206
8
18
Im board and I want projects
Post any suggestions, and I'll make them (probably).
 
Last edited:
Code:
command /testdrop:
    trigger:
        drop 1 egg
        set {_e} to last spawned entity
        set glowing of {_e} to true

If you're talking about on the ground, this should work. Haven't tested.
 
fully vanilla black hole thini, works in parser idk if it works in a server.

Code:
command blackhole:
    trigger:
        spawn a armor stand
        set name of the armor stand to "Black Hole"


every 1 second:
    loop all entities:
        if loop-entity is an armor stand:
            set {_armorLoc} to location of loop-entity
            loop all players in radius 20 around {_armorLoc}:
                set {_playerLoc} to location of loop-entity-2
                set {_xDiff} to x-coordinate of {_armorLoc} - x-coordinate of {_playerLoc}
                set {_yDiff} to y-coordinate of {_armorLoc} - y-coordinate of {_playerLoc}
                set {_zDiff} to z-coordinate of {_armorLoc} - z-coordinate of {_playerLoc}

                set {_speed} to 0.2
                set {_xDiff} to {_xDiff} * {_speed}
                set {_yDiff} to {_yDiff} * {_speed}
                set {_zDiff} to {_zDiff} * {_speed}

                set velocity of loop-entity-2 to vector({_xDiff}, {_yDiff}, {_zDiff})