Q&A for How to Type Colored Text in Minecraft Chat (Works with Command Blocks)

Return to Full Article

Search
Add New Question
  • Question
    What are the specific colors that can be used for this?
    Community Answer
    As it says in the "Tips" section at the bottom, you can use Red, Green, Blue, White, Yellow, Dark_Red, Dark_Green, Dark_Blue, and Gold.
  • Question
    How do I type bold, red letters?
    Community Answer
    Using some formatting in the command. Here is a command for the big red text: /tellraw @p {"text":"TEXTHERE","bold":true,"color":"dark_red"}
  • Question
    What colors can I use?
    Community Answer
    As it says in the "Tips" section at the bottom, you can use red, green, blue, white, yellow, dark red, dark green, dark blue, and gold.
  • Question
    Can you do additional colors for only one command?
    Community Answer
    Yes, but it requires putting a comma between each text line and brackets over the entire thing, for example: /tellraw @a [{"text":"First Text","color":"First Color"},{"text":"Second Text","color":"Second Color"}] You can have as many lines as you want.
  • Question
    How do you get a command block?
    Community Answer
    Use /give (Your name) command_block. Don't use the ( )'s. Confused still? Use it like this: /give Sarah0017 command_block.
  • Question
    How do I get mob spawners?
    Community Answer
    /give @p minecraft:mob_spawner. Then right click it with a spawn egg to change the mob type. Enderman's heads stick out of the cage.
  • Question
    What should I do if the text is showing up but it is not colored?
    Community Answer
    If you have typed the color with any upper case letters, it will not be recognized by the game. The color you have chosen also might not be an available color, so try other colors to see if they work.
  • Question
    How do I get a mob spawner using command blocks? Using the "give"command?
    Community Answer
    Type this: "/give @p minecraft:mob_spawner". Then right-click it with a spawn egg.
  • Question
    How do I make two different colors with one command block?
    Minecraft Apple & MLP
    Community Answer
    Since 1.9, it could be in an array. Try this: [{"text":"Red!","color":"red"}," ",{"text":"Green!","color":"green"}]
  • Question
    Dose this work on Mineplex?
    Minecraft Apple & MLP
    Community Answer
    No. Most modded servers have plugins that allow you to format text by doing something such as "&6gold" to color chat. However, for most servers, you need to be a staff member/donor. Just doing /tellraw directly is also not do-able on Mineplex, as you need OP lvl 2 or higher.
  • Question
    What do I do if my command block doesn't let this work?
    Community Answer
    Make sure the color you are typing in is lower case - "red", not "Red". The game can't analyze the upper case letters yet, so if you type in upper case letters nothing will happen.
  • Question
    How do I use a Chain Command Block?
    Community Answer
    You put it facing up then put commands in them, then activate the bottom one and they will all activate.
  • Question
    How do I enter the text?
    Community Answer
    /tellraw @a {"text":"Insert Text Here","color":"red"}. Where it says "insert text here," change that with the thing you want it to say.
  • Question
    When I get onto a server like Mineplex, I see these huge colored letters that say mineplexEu (and then some random server update). How do I do that?
    Minecraft Apple & MLP
    Community Answer
    If they're on the center of your Minecraft game (usually the whole screen), that can be reproduced with /title. Although it can get rather complex, you do /title @a subtitle.
  • Question
    How can I make a command block say several things like an intro to a map would?
    Diamond Lyssa
    Community Answer
    So, add the first command block, with the text and whatever else you want, then add a repeater in front of it. Add as many repeaters as you'd like for a longer pause between texts on screen, then add the next command block with the next command in it in front of the repeater. Continue this process until you are happy. You can use redstone dust if you want also.
  • Question
    I am making an adventure map and I need the font to say the players name, but it will not do that with a colored font. How can I do this?
    Community Answer
    Use selectors. It features a basic listing feature built in, and all you have to do is replace "text" with "selector."
  • Question
    How do I make colorful writing on a sign?
    Community Answer
    On PE, hold the & key. Type the key that appears. Write one of these keys after it: 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, a, b, c, d, e and f. Anything you write after it will be in colour. This works in chat and your username.
  • Question
    I'm trying to put a link in my chat through the command block and it doesn't work. How do I put a clickable link in my chat?
    Community Answer
    Add [{"text":"","clickEvent":{"action":"open_url","value":""}}] Basically, you add "clickEvent":{"action":"open_url","value":""} wherever you want your clickable URL to be added.
  • Question
    Can I use this for floating name tags?
    Community Answer
    You can't use the exact command, as you need an invisible armor stand for a floating name tag.
  • Question
    How do I get the button on the command block?
    Community Answer
    Hold down your crouch key and place the button. (Mine is Z, but the default is Shift.)
  • Question
    How do I make it so it never weathers?
    Minecraft Apple & MLP
    Community Answer
    /gamerule doWeatherCycle false. The weather will only change with commands, ex. /toggledownfall and /weather.
  • Question
    How can I make it big so that it shows all over the screen like on servers?
    Community Answer
    /title @a title {"text":"Type your text here","color":"dark_purple"} This is the command to get the text all over your screen. You can change the color if you want to.
  • Question
    How do I add a player's name in the command?
    hesham h. alkhedr
    Community Answer
    Replace the @p with the player's name to target him only with the command. Example : /give @p minecraft:command_block.
  • Question
    How do I make bold text in Minecraft chat?
    Minecraft Apple & MLP
    Community Answer
    You add "bold":"true" to the command. For instance, to have bold yellow text, do /tellraw @a [{"text":"Bold yellow","color":"yellow","bold":"true"}].
  • Question
    Can I make it bold and underlined?
    Minecraft Apple & MLP
    Community Answer
    Yes, you do /tellraw @a [{"text":"Bold and underlined","bold":true,"underlined":true}].
  • Question
    Can I do this without a command block?
    Minecraft Apple & MLP
    Community Answer
    Yes, although it is slightly limiting as you only get 256 characters (including your /tellraw @a), instead of 32,500.
  • Question
    How do I get player heads?
    Minecraft Apple & MLP
    Community Answer
    /give @s skull 1 3 {SkullOwner:"
  • Question
    How do I make the text say something in a color, and some text in a different color?
    Minecraft Apple & MLP
    Community Answer
    /tellraw @a [{"text":"Purple text","color":"light_purple"}," ",{"text":"Green text","color":"green"}]. TextComponents (the thing after /tellraw @a) are an array with strings/compounds, and you can add as many compounds/strings as you want. The " " in the center is just an unformatted space.
  • Question
    How do I do a rainbow message?
    Minecraft Apple & MLP
    Community Answer
    It is a long command. Let's say that you wanted "rainbow" but everything is in different colors. Although lengthy, it is /tellraw @a [{"text":"r","color":"red"},{"text":"a","color":"gold"},{"text":"i","color":"yellow"},{"text":"n","color":"green"},{"text":"b","color":"aqua"},{"text":"o","color":"blue"},{"text":"w","color":"dark_purple"}].
  • Question
    How do I add italics?
    Minecraft Apple & MLP
    Community Answer
    /tellraw @a [{"text":"Italic text","italic":true}]. The "true" does not have to be encased in quotes because it is a boolean (true or false) value, whereas,"italic" is a string (regular text) and needs to be put in quotes to differ it from code.
Ask a Question

      Return to Full Article