of     1   

timthehyper
#394748Friday, January 18, 2008 2:50 AM GMT

like when you touch a brick it asks you something how do you do that?!?!
XlegoX
#394813Friday, January 18, 2008 3:00 AM GMT

m = Instance.new("Message") m.Parent = game.Workspace OR a player m.Text = "blah blah blah" in a script inserts a message, if the parent is workspace everyone sees the message, if the parent is a player then that player sees it ;)
randomrobot
Top 100 Poster
#396759Friday, January 18, 2008 10:35 PM GMT

Here(haven't tested it yet but it should work): debounce = true function onTouch(hit) if debounce == true then debounce = false message = Instance.new("Message") message.Text = "blah" message.Parent = game.Players:playerFromCharacter(hit.Parent) wait(4) message:remove() debounce = true end end script.Parent.Touched:connect(onTouch) Insert this script into the brick. Change blah to what you want the message to say.

    of     1