hey so i need some help with a skript that im getting confused with

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

OpulTL

Member
Nov 24, 2025
1
0
1
so im trying to do this:

push {grapple.ability.ident::%uuid of player%} from location of {grapple.ability.ident::%uuid of player%} to location of {grapple.ability.user::%uuid of attacker%}


now i know how to do push events pretty well but im having trubble using variables for it...
 
so im trying to do this:

push {grapple.ability.ident::%uuid of player%} from location of {grapple.ability.ident::%uuid of player%} to location of {grapple.ability.user::%uuid of attacker%}


now i know how to do push events pretty well but im having trubble using variables for it...
Assuming the rest of your code is in order, my guess is you need to parse as a player. What is being saved in {grapple.ability.ident::%uuid of player%}? If this is your whole code in regards to this event, my idea won't work.

Code:
set {_player} to {grapple.ability.ident::%uuid of player%} parsed as player
set {_attacker} to {grapple.ability.ident::%uuid of attacker%} parsed as player

push {_player} from location of {_player} to location of {_attacker}