

/effect Command: Granting Status Effects to Players and M/obs
Command entered in the Command Block:
A. ⬆️ Jump Boost
Block Type: Repeat / Redstone: Needs Redstone
/effect @p jump_boost 2 50
(This command block repeatedly gives the player a jump boost effect with level 50 for 2 seconds.)
B. ⚡Speed Boost
Block Type: Repeat / Redstone: Needs Redstone
/effect @p speed 2 10
(This command block repeatedly gives the player a speed effect with level 10 for 2 seconds.)
C. 🗡️Strength Boost
Block Type: Repeat / Redstone: Needs Redstone
/effect @p strength 1 255
(This command block repeatedly gives the player a strength effect with the maximum level of 255 for 2 seconds.)
D. 👀Giving a Night Vision
Block Type: Repeat / Redstone: Needs Redstone
/effect @p night_vision 2 1
(This command block repeatedly gives the player a night vision effect with level 1 for 2 seconds.)
E. 🛡️Invincibility Mode (Resistance: Max Level 255)
Block Type: Repeat / Redstone: Needs Redstone
/effect @p resistance 2 255
(This command block repeatedly gives the player a resistance effect with the maximum level of 255 for 2 seconds, making the player invincible.)
F. 👻Invisibility
Block Type: Repeat / Redstone: Needs Redstone
/effect @p invisibility 2 1 true
(This command block repeatedly gives the player an invisibility effect for 2 seconds.)
G. 🧟♂️Granting a Zombie Fire Resistance
Block Type: Repeat / Redstone: Needs Redstone
/effect @e[type=zombie] fire_resistance 2 1
(This command block repeatedly gives zombies a fire resistance effect with level 1 for 2 seconds.)
While you can run the /effect command with a longer duration in the chat, it’s a hassle to revert the effect level. You’d have to drink milk or run /effect @s clear.
By using a /effect command with a short duration and repeating it with a Repeat command block, you can easily toggle the effect ON/OFF with a lever.
For the invisibility effect, we added true at the end of the command: /effect @p invisibility 2 1 true. This optional argument true hides the particles. If you’re playing multiplayer and want to be completely invisible to other players, it’s a good idea to add true to hide the particles as well.
<a href=”https://education.minecraft.net/” target=”_blank” rel=”noopener”>Minecraft: Education Edition</a> is a version of Minecraft specifically designed for educational use. It aims to help students develop skills in creative problem-solving, collaboration, and communication. A key feature is the ability to learn programming through tools like MakeCode and Python. It also provides specialized features for the classroom, including teacher management tools, lesson plans, and educational content.
