of     1   

youaredoome0
#144043Sunday, September 09, 2007 7:22 PM GMT

ive seen people do messages in the upper left corner and along the bottom of the screen. h0w do i do this?
nate2800
#144060Sunday, September 09, 2007 7:38 PM GMT

local message = Instance.new("Message") message.Text = "Your message here" message.Parent = game.Players wait(5) message:remove() local hint = Instance.new("Hint") message.Text = "Your message here" message.Parent = game.Workspace wait(5) hint:remove()
nate2800
#144061Sunday, September 09, 2007 7:39 PM GMT

WHOOPS! forgot to edit the second one! use this... local message = Instance.new("Message") message.Text = "Your message here" message.Parent = game.Players wait(5) message:remove() local hint = Instance.new("Hint") hint.Text = "Your message here" hint.Parent = game.Workspace wait(5) hint:remove()
youaredoome0
#144070Sunday, September 09, 2007 7:46 PM GMT

ty man
youaredoome0
#144098Sunday, September 09, 2007 8:08 PM GMT

also how do i make messages only appear to one player, say, an admin?
randellman
#11140680Wednesday, July 15, 2009 12:48 AM GMT

m = Instance.new("Message") m.Text = "TEXT HERE" m.Parent = game.Players.PLAYERNAME wait(5) m:Remove()
saltytaco1234
#11150404Wednesday, July 15, 2009 3:28 AM GMT

yah randell has it but you can also get the char.Player

    of     1