Freezing player in place completely

Started by Joshualtd on

Topic category: Help with Minecraft modding (Java Edition)

Joined Jun 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Freezing player in place completely

I have a problem where i need to freeze the player and remove his ability to move at all: no falling down, no walking, no jumping, no flying. I was able to do that by overriding velocity at earlier versions of MCreator, but ever since i've updated to newest version it stopped working and player is able to move. (can show how it works in past versions but not now)

Joined Jun 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Create a procedure with…
Fri, 06/20/2025 - 18:37

Create a procedure with condition "on player tick update" then create 3 variables (x, y, z) where you are gonna put player's coordinates ( get event/target entity X coordinates, get event/target entity Y coordinates ...) and then put a block to teleport event target entity to your local variables x, y and z

Joined Jun 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I will try that, thanks
Sat, 06/21/2025 - 08:39

I will try that, thanks