Minecraft /tellraw & /title Command Generator
Easily create colorful and interactive text in the chat or on the screen with this WYSIWYG generator for Tellraw and Title commands.
Live PreviewChat
Command Type
채팅 메시지 설정
Generated Command
/tellraw @a {"text":"Hello World!"}The Ultimate Minecraft Tellraw & Title Command Generator
MCCommand's /tellraw and /title generator enables you to quickly craft JSON formatted text with vibrant colors, bold, and underline styles in Minecraft. Specially for /tellraw, you can embed URL links or add run command buttons, which is essential for minigames and server announcements. Skip the headache of complex brackets and syntax; simply combine text snippets visually and generate perfect custom messages with real-time live preview.
Command Usage Examples
1. Server Announcement (Warning)
Displays a bold red title in the center of the screen to warn about server maintenance or boss spawns.
/title @a title ["",{"text":"Server maintenance starting soon!","color":"red","bold":true}]2. Magic Item Reward Button (Tellraw)
Sends a chat message that, when clicked, gives the player a diamond.
/tellraw @p ["",{"text":"[Claim Reward]","color":"gold","clickEvent":{"action":"run_command","value":"/give @s diamond 1"},"hoverEvent":{"action":"show_text","contents":"Click to get a diamond!"}'}]3. Epic Title and Subtitle Combo
An epic visual sequence displaying both a title and subtitle when a boss appears.
/title @a times 20 100 20
/title @a subtitle ["",{"text":"The end of the world approaches...","color":"gray","italic":true}]
/title @a title ["",{"text":"Dragon Awakening","color":"dark_purple","bold":true}]4. Discord or Website Link
Clicking the text will open the player's web browser to your server's official Discord or Website.
/tellraw @a ["",{"text":"Join our Discord","color":"blue","underlined":true,"clickEvent":{"action":"open_url","value":"https://discord.gg/"}'}]5. Clean Actionbar Status Display
Displays a small status text (like current region or mana) right above the hotbar without obstructing the center screen.
/title @a actionbar ["",{"text":"Current Zone: Safe Area","color":"green"}]The Ultimate Guide to /tellraw & /title
The /tellraw and /title commands are the best directorial tools in Minecraft, transforming plain text into interactive UI elements with colors, bolding, and clickable actions.
1. Understanding JSON Text Format
These commands use the JSON format. You can construct complex and beautiful sentences by defining properties like text content, color, bold, and italic enclosed in curly and square brackets.
2. Click Event and Hover Event
The core of Tellraw is interactivity. You can use clickEvents to open URLs or execute commands, and hoverEvents to display hidden tooltips or item descriptions, essential for quest maps.
3. The Master of Immersion, /title
The Title command displays large text directly in the center of the player's screen for dramatic effect. Adjusting the fade-in and fade-out animation times allows for cinematic cutscenes.
4. Real-time Status UI, Actionbar
The actionbar sub-command of /title displays a small, unobtrusive message above the inventory hotbar. Running this in a repeating command block allows you to create excellent in-game UIs like a 'Mana Bar' or 'Region Name' in RPG games.
Frequently Asked Questions (FAQ)
Q. What is the difference between tellraw and title commands?
A. /tellraw prints messages to the chat box and supports click events (running commands, opening URLs) and hover events (showing tooltips). In contrast, /title displays large, flashy text in the center of the screen (title) or right above the hotbar (actionbar) to grab the player's immediate attention.
Q. Can I use click events with Title commands?
A. No, click events and hover events only function in the chat box via the /tellraw command. Title text displayed on the screen cannot be clicked or hovered over.
Q. How long is 1 tick in the Title Times settings?
A. In Minecraft, 20 ticks equal 1 real-world second. Thus, setting the 'Stay' time to 60 ticks will keep the title on the screen for 3 seconds. Fade-in and Fade-out times are calculated with the same unit.
Q. What does the 'Obfuscated (Magic)' style do?
A. Applying the 'obfuscated' style makes the text constantly and rapidly scramble into random characters. It is highly useful for creating a mysterious atmosphere or encrypted messages on your server.
Q. Who executes the 'run_command' click event in Tellraw?
A. The command is executed with the permissions of the player who clicks the text, exactly as if they typed it into their chat. Therefore, if a normal player clicks an OP-only command, it will fail. To allow normal players to trigger systems, combine this with the 'trigger' command and scoreboards.