minecraft tellraw generator code example
Example 1: tellraw minecraft
Minecraft Java Edition JSON formatting w/tellraw:
Available selectors are @a, @s, @p, @r
White text: /tellraw @a {"text":"This is an example of white Minecraft text"}
Colored text (Red): /tellraw @a {"text":"This is an example of red Minecraft text","color":"red"}
Minecraft Bedrock (Console, Windows 10, Mobile):
White Text: /tellraw @a {"rawtext":[{"text":"§fThis is an example of white Minecraft text"}]}
For white text ^^ §f stands for white all color letters can be found here
Red Text: /tellraw @a {"rawtext":[{"text":"§cThis is an example of white Minecraft text"}]}
For white text ^^ §c stands for red all color letters can be found here
== Info ==
Websites listed were not created by me.
The swift coding language is not used here; I used it for colors.
Example 2: json minecraft
Minecraft Java Edition JSON formatting:
White text: {"text":"This is an example of white Minecraft text"}
Colored text (Red): {"text":"This is an example of red Minecraft text","color":"red"}
Minecraft Bedrock (Console, Windows 10, Mobile):
White Text: {"rawtext":[{"text":"§fThis is an example of white Minecraft text"}]}
For white text ^^ §f stands for white all color letters can be found here
Red Text: {"rawtext":[{"text":"§cThis is an example of white Minecraft text"}]}
For white text ^^ §c stands for red all color letters can be found here
== Info ==
Websites listed were not created by me.