Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Hint and Message don't work anymore?

Asked by 8 years ago

I tried everything and the text doesn't want to show up at the top of the screen.

h = Instance.new("Hint", game.Workspace)

h.Text = "jdfjafjafpa"

It shows the hint bar but it doesn't show it with the text.

I do not have any free models in the game. I don't like using free models.

0
This isn't in a local script is it? iSvenDerp 233 — 8y
0
No it is not a local script :p RetroThieff 5 — 8y
0
Ok we'll try removing game and just use (hint, Workspace) iSvenDerp 233 — 8y
0
Didn't work :p RetroThieff 5 — 8y
0
I'm just giving ideas but try putting local in front of the h iSvenDerp 233 — 8y

2 answers

Log in to vote
0
Answered by 8 years ago

Hint and Message still work because I just tested them and had no problem with doing this.

You must have another script in your place causing the problem. Perhaps their is a Hint overlapping the one you created? Anyway, I have provided how making a Hint/Message would be, and they're similar to yours. Just try creating them in a different place then look in your original place for the problem. Perhaps a free model is screwing with you?

  • Creating a Message
m = Instance.new("Message", game.Workspace)
m.Text = "This is a Message."
  • Creating a Hint
h = Instance.new("Hint", game.Workspace)
h.Text = "This is a Hint."

I will mention that making it game.Workspace or just Workspace will not matter, nor do my variables for message and hint either!

0
Okay so I have a while wait() do and I have the h = Instance.new("Hint", game.Workspace) out of the while wait() do and when I put the .Text out of it it works. RetroThieff 5 — 8y
Ad
Log in to vote
0
Answered by 8 years ago

I know Hints and Messages never work for me! Like the guy said "A free model might be screwing with you?" and It's probably true.

Answer this question