How do I use Tellraw Selectors on Bedrock Edition? [duplicate]

I'm working on a map in Bedrock Edition, and I need to have a command block at the end that says "Congratulations [player], you win!" Because it's a map, I cant just have it say a specific player's name, and I've seen maps that do exactly what I want mine to do. How do I format the command to allow this?


Solution 1:

You can do it with this command:

/say Congratulations @p, you win

You can use any other target selector if you prefer that, you can even use @a, or @e, which will return a list with all the specified players/entities, separated by ,.

This, for example, will say "Congratulations Pig, Pig, Pig, you win", if there are 3, or more pigs in your world and you haven´t renamed them:

/say Congratulations @e[type=pig,c=3], you win