of     1   

Awsomeman511
#143965077Tuesday, August 19, 2014 12:49 AM GMT

whats wrong with this script wait(5) local Msg = Instance.new("Message") Msg.Parent = game.Workspace Msg.Text = "test123" wait(2) Msg.Text = "done" Msg:remove()
Prehistoricman
#143965265Tuesday, August 19, 2014 12:51 AM GMT

Nothing.
Awsomeman511
#143965356Tuesday, August 19, 2014 12:52 AM GMT

it wont work...
TheMrRadioActiveMan
#143967801Tuesday, August 19, 2014 1:23 AM GMT

the full script?
FauxHawke
#143971082Tuesday, August 19, 2014 2:02 AM GMT

wait(5) local Msg = Instance.new("Message") Msg.Parent = game.Workspace Msg.Text = "test123" wait(2) Msg.Text = "done" Msg:remove()--here it removed it at the same time it said done, maybe thats your problem try this: wait(5) local Msg = Instance.new("Message") Msg.Parent = game.Workspace Msg.Text = "test123" wait(2) Msg.Text = "done" wait(2)--insert a wait here, so it says done, THEN removes it Msg:remove() Never trust atoms, they make up everything.
Origin_Sea
#143974831Tuesday, August 19, 2014 2:56 AM GMT

What's the problem with the script? It should work.

    of     1