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

How do I insert a hint?

Asked by 11 years ago

Im doing this test thing and I would like to use a hint instead of a message, but it seems hints have been removed?

01Game.Players.PlayerAdded:connect(function(Player)
02    --Check for specific names here if wanted.
03    Player.Chatted:connect(function(msg)
04        if msg == "Hi" then
05        Instance.new("Message", Workspace)
06        x = game.Workspace.Message
07        wait(.5)
08        x.Text = "Test"
09        end
10    end)
11end)

4 answers

Log in to vote
5
Answered by
Ozzypig 185
11 years ago

Hints are simply deprecated in favor of GUI objects, so they're being phased out over time I imagine. Consider making a basic GUI to do what you're trying to accomplish instead. Remember that hints visible to one player must be inside their PlayerGui.

0
i agree thehybrid576 294 — 8y
Ad
Log in to vote
1
Answered by
Nickoakz 231 Moderation Voter
11 years ago

Hint's aren't removed. I have no idea where you got that fact.

01Game.Players.PlayerAdded:connect(function(Player)
02    --Check for specific names here if wanted.
03    Player.Chatted:connect(function(msg)
04        if msg == "Hi" then
05            local myhint=Instance.new("Hint", Workspace)
06            myhint.Text="Test"
07            wait(7)
08            myhint:Destroy()
09        end
10    end)
11end)
Log in to vote
0
Answered by
Dom2d2 35
11 years ago

You can insert a hint with the following code.

1m = instance.new("Hint", Workspace)
2m.Text = "hi" --Whatever text you want it to say.
Log in to vote
0
Answered by 4 years ago

6 YEARS LATER

1local hint = Instance.new("Hint")
2hint.Text = "THIS IS A HINT"

Answer this question