of     1   

webrisa
#190039Sunday, October 14, 2007 1:02 PM GMT

how do u make a message block u know withthears a message and u step on it and thears a message how do i make my own?
chainmill
#190044Sunday, October 14, 2007 1:08 PM GMT

I think you need a script for that. I'll try to find you one.
chainmill
#190055Sunday, October 14, 2007 1:31 PM GMT

print("Wedgiemaster's message box") local debounce = false function onHit(hit) local human = hit.Parent:findFirstChild("Humanoid") if (human ~= nil) and debounce == false then debounce = true local message = Instance.new("Message") message.Text = "insert message one here" message.Parent = game.Players:playerFromCharacter(hit.Parent) wait(5) message.Text = "insert message two here" wait(5) message.Text = "message three" wait(5) message.Text = "four" wait(5) message.Text = "5" wait(5) debounce = false end end script.Parent.Touched:connect(onHit) There you go. Copy and paste that into a script, and add a message BLOCK. Then edit the message.

    of     1