Jump to content
bbh_blocked_dnftl
News:
  • News ticker sample
  • News ticker sample

    Welcome to EnigmaProjects

    Our Website is Gaming, Streaming and Streaming Community!
    News Ticker
    • Welcome To EnigmaProjects
    • Registrations are open!
    • RadioHosting is ready!
    • New Events Soon!
    • Potitions open!

    Minecraft Bedrock Commands


    dombnexen

    Recommended Posts

    • Owner

    🧑‍💻 PLAYER (USER) COMMANDS

    Commands players can usually use without operator status, depending on server/world permissions.

    Chat & Communication

     
     
    /me <action> /tell <player> <message> /msg <player> <message> /w <player> <message>

    Gameplay / Utility

     
     
    /help /help <command> /list /seed /clear /clear <player> /clear <player> <item>

    Player Info

     
     
    /title @s title <text> /title @s subtitle <text> /title @s actionbar <text>

    (Note: title permissions may be restricted by server settings)


    🛡️ OPERATOR / ADMIN COMMANDS

    Require operator status or cheats enabled


    🎮 GAMEMODE & DIFFICULTY

     
     
    /gamemode survival /gamemode creative /gamemode adventure /gamemode spectator /gamemode <mode> <player> /difficulty peaceful /difficulty easy /difficulty normal /difficulty hard

    ⏱️ TIME & WEATHER

     
     
    /time set day /time set night /time set <number> /time add <number> /weather clear /weather rain /weather thunder /weather <type> <duration>

    🧭 TELEPORTATION & POSITION

     
     
    /tp <player> <player> /tp <player> <x> <y> <z> /tp @s ~ ~ ~ /teleport (same as /tp) /spawnpoint /spawnpoint <player> /setworldspawn /setworldspawn <x> <y> <z>

    🎒 INVENTORY & ITEMS

     
     
    /give <player> <item> /give <player> <item> <amount> /give <player> <item> <amount> <data> /clear <player> /clear <player> <item>

    ❤️ HEALTH, STATUS & EFFECTS

     
     
    /effect <player> <effect> /effect <player> <effect> <seconds> <amplifier> /effect <player> clear /kill /kill <player> /damage <player> <amount>

    🧱 BLOCKS & WORLD EDITING

     
     
    /setblock <x> <y> <z> <block> /fill <x1> <y1> <z1> <x2> <y2> <z2> <block> /fill ... replace /clone <start> <end> <destination>

    🧠 ENTITIES & MOBS

     
     
    /summon <entity> /summon <entity> <x> <y> <z> /kill @e /kill @e[type=zombie] /kill @e[r=10]

    🎯 TARGET SELECTORS

     
     
    @s = yourself @p = nearest player @a = all players @e = all entities @r = random player

    Selector Arguments

     
     
    [type=] [name=] [r=] (radius) [rm=] (min radius) [c=] (count) [tag=] [x=] [y=] [z=] [dx=] [dy=] [dz=]

    Example:

     
     
    /tp @e[type=cow,r=5] @s

    🏷️ TAGS & SCOREBOARD (ADVANCED)

    Tags

     
     
    /tag <player> add <tag> /tag <player> remove <tag> /tag <player> list

    Scoreboard

     
     
    /scoreboard objectives add <name> dummy /scoreboard objectives remove <name> /scoreboard objectives list /scoreboard players add <player> <objective> <value> /scoreboard players remove <player> <objective> <value> /scoreboard players set <player> <objective> <value> /scoreboard players list <player>

    🧪 GAMERULES

     
     
    /gamerule doDaylightCycle true|false /gamerule keepInventory true|false /gamerule mobGriefing true|false /gamerule doMobSpawning true|false /gamerule showCoordinates true|false /gamerule commandBlockOutput true|false

    🧰 COMMAND BLOCK / SERVER

     
     
    /say <message> /stop /reload /function <name>

    👥 PLAYER MANAGEMENT

     
     
    /op <player> /deop <player> /kick <player> /kick <player> <reason> /ban <player> /ban-ip <ip> /pardon <player> /pardon-ip <ip> /whitelist on /whitelist off /whitelist add <player> /whitelist remove <player>

    🧩 STRUCTURES & ADD-ONS

     
     
    /structure save <name> <x1> <y1> <z1> <x2> <y2> <z2> /structure load <name> <x> <y> <z> /structure delete <name> /reload

    🧪 DEBUG & CAMERA

     
     
    /camera <player> set free /camera <player> set first_person /camera <player> set third_person /playsound <sound> <player> /stopsound <player>

     


    🎮 COMMAND BLOCK EXAMPLES (BEDROCK)

    Command Block Types

    • Impulse → runs once

    • Chain → runs after previous

    • Repeat → runs every tick

    • Always Active → no redstone needed


    🚪 1. TELEPORT PAD

    Steps

    1. Place Pressure Plate

    2. Under it: Impulse Command Block

    Command

     
     
    /tp @p 100 64 100

    📌 Teleports nearest player to set coordinates


    ❤️ 2. AUTO-HEAL ZONE

    Repeat | Always Active

     
     
    /effect @p[r=5] regeneration 1 1 true

    📌 Heals players within 5 blocks continuously


    🔥 3. MOB KILL ZONE

    Repeat | Always Active

     
     
    /kill @e[type=!player,r=10]

    📌 Kills all mobs in radius (safe for farms)


    🛑 4. NO-ENTRY AREA (INVISIBLE WALL)

    Repeat | Always Active

     
     
    /tp @p[x=50,y=64,z=50,dx=10,dy=5,dz=10] 0 100 0

    📌 Teleports intruders away


    🏷️ 5. TAG SYSTEM (ADMIN / VIP)

    Step 1 – Give Tag (Impulse)

     
     
    /tag @p add vip

    Step 2 – Effect for VIPs (Repeat)

     
     
    /effect @a[tag=vip] speed 1 1 true

    🎯 6. PLAYER COUNTER (SCOREBOARD)

    Setup (Impulse)

     
     
    /scoreboard objectives add players dummy Players

    Repeat | Always Active

     
     
    /scoreboard players set @a players 1

    📌 Used for tracking or logic systems


    💥 7. TNT TRAP

    Impulse

     
     
    /summon tnt ~ ~1 ~

    📌 Place under pressure plate


    🚦 8. COMMAND BLOCK CHAIN EXAMPLE

    Impulse

     
     
    /say Teleporting...

    Chain

     
     
    /tp @p 0 100 0

    Chain

     
     
    /effect @p slow_falling 10 1

    ⚙️ READY-TO-USE ADMIN COMMANDS


    👑 ADMIN MODE (FULL POWER)

     
     
    /gamemode creative @s /effect @s night_vision 999999 1 true /effect @s resistance 999999 5 true

    🔒 FREEZE PLAYER

     
     
    /effect <player> slowness 999999 255 true /effect <player> jump_boost 999999 128 true

    🚫 BANISH PLAYER TO VOID

     
     
    /tp <player> 0 -64 0

    💬 ANNOUNCEMENT SYSTEM

     
     
    /title @a title §cSERVER NOTICE /title @a subtitle §fWelcome to the server!

    🔄 RESET PLAYER

     
     
    /clear <player> /effect <player> clear /tp <player> @s

    🧼 CLEAR LAG (MOBS + ITEMS)

     
     
    /kill @e[type=!player]

    Or safer:

     
     
    /kill @e[type=item]

    🚀 TELEPORT ALL PLAYERS

     
     
    /tp @a 0 100 0

    🛡️ ENABLE / DISABLE PVP

     
     
    /gamerule pvp false /gamerule pvp true

    🧪 GIVE CUSTOM KIT

     
     
    /give <player> diamond_sword /give <player> diamond_armor 1 /give <player> golden_apple 10

    🔁 RESTART-LIKE RESET

     
     
    /time set day /weather clear /kill @e[type=item]

    🧠 PRO TIPS

    • Use tags instead of names (works offline-safe)

    • Combine Repeat + Chain blocks for automation

    • Bedrock command blocks run 20 times per second

    • Use /gamerule commandBlockOutput false to reduce spam

    Link to comment
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.