|
| 15 Jan 2012 12:01 PM |
function onTouched(hit) msg.Instance.new("Message") msg.Parent = game.Workspace msg.Text = "deadbattler he is a not a Nub" wait(3) msg:remove() wait(1) msg.Text = "Joking he is an epicz Nubz, I like him." wait(3) msg.remove() msg.Text = "Or do I?" wait(2) msg:remove() end
Script.Parent.Touched:connect(onTouched)
|
|
|
| Report Abuse |
|
|
|
| 15 Jan 2012 12:07 PM |
function onTouched(hit) msg = Instance.new("Message") msg.Parent = game.Workspace msg.Text = "deadbattler he is a not a Nub" wait(3) msg.Text = "" wait(1) msg.Text = "Joking he is an epicz Nubz, I like him." wait(3) msg.Text = "" msg.Text = "Or do I?" wait(2) msg:remove() end
Script.Parent.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2012 12:08 PM |
| Also, you might want to make chance the msg definition to local msg if you only want one person to see it. |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2012 01:58 PM |
what does the msg.Text = "" mean?
|
|
|
| Report Abuse |
|
|
slayer219
|
  |
| Joined: 15 Nov 2008 |
| Total Posts: 3445 |
|
|
| 15 Jan 2012 01:59 PM |
function onTouched(hit) local msg = Instance.new("Message") msg.Parent = game.Workspace msg.Text = "deadbattler he is a not a Nub" wait(3) msg.Text = "Joking he is an epicz Nubz, I like him." wait(3) msg.Text = "Or do I?" wait(2) msg:Destroy() end
script.Parent.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2012 06:10 PM |
| @RikeMasterr, the empty quotes make the msg blank. |
|
|
| Report Abuse |
|
|