Minecraft Command Block trouble

minecraft-commandsminecraft-java-edition

I am staff on a server and we are adding in a creative world which is already set up. I need a way for other non-staff people to get there. I thought command blocks! But I am having the trouble where when I type in @P it does not select the right person. What should I do?

Best Answer

Your problem is that selectors are case sensitive, and thus @P does not work; you need to type @p (lower-case "p") instead.

After that, it's important to note that @p selects the closest player. I don't know what your criteria are for whom the "right person" to teleport is; if you just want to select the closest player to the command block then just @p should work fine, but otherwise you will need to use selector arguments. The Minecraft Wiki has a good page section on them; you can select people by their position, scoreboard scores, team, etc..