beeflord
|
  |
| Joined: 06 Jun 2009 |
| Total Posts: 3372 |
|
|
| 04 Nov 2011 10:19 AM |
| How do I make a hint for all players in the game? |
|
|
| Report Abuse |
|
|
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
|
| 04 Nov 2011 10:26 AM |
| Instance.new("Hint", workspace) |
|
|
| Report Abuse |
|
|
beeflord
|
  |
| Joined: 06 Jun 2009 |
| Total Posts: 3372 |
|
| |
|
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
|
| 04 Nov 2011 10:30 AM |
Instance.new("Hint", workspace).Text = "MrChubbs is so cool" OR H = Instance.new("Hint") H.Parent = workspace H.Text = "MrChubbs is so cool" |
|
|
| Report Abuse |
|
|
beeflord
|
  |
| Joined: 06 Jun 2009 |
| Total Posts: 3372 |
|
| |
|
|
| 04 Nov 2011 10:38 AM |
You can insert one from the toolbox (Insert Object) With out any script |
|
|
| Report Abuse |
|
|
|
| 04 Nov 2011 11:07 AM |
m = Instance.new("Message") --Create new message m.Parent = game.Workspace --Set Parent to workspace m.Text = "Hello." --What the message displays m.Name = "HelloMessage" --Optional, but you can set it if you want. wait(4) m:Remove() |
|
|
| Report Abuse |
|
|