How to make a sprite enter a name

Having some trouble getting a sprite to say a entered name. Is it possible?

1 Like

Welcome to Snap! In the Looks palette, there are

[scratchblocks]
say []
[/scratchblocks]

and

[scratchblocks]
say [] for () secs
[/scratchblocks]

blocks. To get user input, the Sensing palette has

[scratchblocks]
ask [] and wait
[/scratchblocks]

and

[scratchblocks]
(answer)
[/scratchblocks]

blocks.

Welcome to Snap!
[scratchblocks]
ask [] and wait
say (answer)
[/scratchblocks]

I already showed those blocks.