Solved Freezing player's screen

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

xdprojosh1

Member
May 31, 2017
23
0
0
25
I have searched on skUnity for "freeze" and this is the only thing i could find:

It works, but it does not completely freeze the player. It will just freeze the player's feet, so they can't move. Is it possible to also freeze the player's head, so when they try to move their head it won't work

code_language.skript:
set the freeze state of player to true
Umbaska Patterns: freeze state of %player%
 
@ThinkingAboutIt

Won't work.
code_language.skript:
        set {_variable} to player's location
        while {_variable} is true:
            teleport player to {_variable}
Because that doesn't logically make sense. You would want to do
code_language.skript:
set {_variable} to player's location
                    set {_true} to true
                    while {_true} is true:
                        teleport player to {_variable}
                        wait 1 tick
 
Status
Not open for further replies.