|
| 21 Jul 2011 10:09 PM |
So i made a strings that make a hint:
msg = Instance.new("Hint") msg.Parent = game.Workspace
but whenever the script gets to the loop: Ex)
while true do wait(5) msg.Text = "FlyingPigsEatingBacon" end
the hint dissapears and does not show the written text. This is just an example but it show what im doing wrong the real script goes over 200+ lines. Any ideas? |
|
|
| Report Abuse |
|
|
|
| 21 Jul 2011 10:10 PM |
| That part doesn't break the Hint, it must be something else in your code that removes the Hint. |
|
|
| Report Abuse |
|
|
|
| 21 Jul 2011 10:10 PM |
while true do msg = Instance.new("Hint",workspace) wait(5) msg.Text = "FlyingPigsEatingBacon" end
|
|
|
| Report Abuse |
|
|
|
| 21 Jul 2011 10:13 PM |
| @Tiger, every 5 seconds it inserts a hint into workspace...Never removes it.. |
|
|
| Report Abuse |
|
|
| |
|
|
| 21 Jul 2011 10:43 PM |
| If you're using Tiger's, I suggest you don't. |
|
|
| Report Abuse |
|
|