🪧
Fun
/title
Flash large titles and subtitles across a player's screen.
At a glance
Syntax
Syntax
/title <target> title <json>commandtargetcoordsvaluerequiredoptional
See it
What it does
Welcome!
to the server
Big text flashes on screen
Anatomy
Every part, explained
- 1
CommandRequired/titleDisplays on-screen title text.
- 2
TargetRequired<target>Who sees it. @a is everyone.
- 3
SlotRequiredtitletitle, subtitle, actionbar, or times.
- 4
TextRequired<json>A JSON text component, e.g. {"text":"Hi"}.
Your turn
Try it yourself
Playground
4 tokens · press Enter to run
Copy & paste
Examples
/title @a title {"text":"Welcome!"}A big greeting for everyone.
/title @s subtitle {"text":"Good luck"}Smaller text under the title.
/title @a times 10 70 20Set fade-in, stay, and fade-out.
Avoid these
Common mistakes
✕
/title @a "Hello"✓
/title @a title {"text":"Hello"}You need a slot keyword and JSON text.
✕
/title @a title Hello✓
/title @a title {"text":"Hello"}Raw text won't work — wrap it in a JSON component.
Keep going