Solved Make player look down

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

    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.
Well... this a simple method, but it does what you want it to do.

code_language.skript:
set {_location} to player's location
set {_pitch} to pitch of player + 180
set {_location}'s pitch to {_pitch}
teleport player to {_location}
 
Well... this a simple method, but it does what you want it to do.

code_language.skript:
set {_location} to player's location
set {_pitch} to pitch of player + 180
set {_location}'s pitch to {_pitch}
teleport player to {_location}
:emoji_astonished: ty btw can I teleport player to the ground? so the player wont stay in mid air
 
:emoji_astonished: ty btw can I teleport player to the ground? so the player wont stay in mid air
What do you mean? Something like this?

code_language.skript:
while blocks above player is air:
    teleport player to location(player's x-coords, player's y-coords - 1, player's z-coords, world)
    wait 5 ticks
Edit: i made a mistake.
 
Last edited:
What do you mean? Something like this?

code_language.skript:
while blocks above player is air:
    teleport player to location(player's x-coords, player's y-coords - 1, player's z-coords, world)
    wait 5 ticks
Edit: i made a mistake.
Code:
on any move:
    {captcha.%player%} = true:
        cancel event
        captcha(player)
        while blocks above player is air:
            teleport player to location(player's x-coords, player's y-coords - 1, player's z-coords, world)
            wait 5 ticks

am I doing smth wrong here
 
Status
Not open for further replies.