How to get player in "on vehicle enter" event?

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

Status
Not open for further replies.
You could use event-entity, and check if its a player
code_language.skript:
if event-entity is a player:
 
Hi there,
how to get the player in an "on vehicle enter" event?
ShaneBee answered your question.
You could use event-entity, and check if its a player
code_language.skript:
if event-entity is a player:
So now you can do things with the player ("player" will not work, use "event-entity")
code_language.skript:
on vehicle enter:
      if event-entity is a player:
            loop all players:
                  send name of event-entity to loop-player
 
Status
Not open for further replies.