Im doing this test thing and I would like to use a hint instead of a message, but it seems hints have been removed?
01 | Game.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 ) |
11 | end ) |
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.
Hint's aren't removed. I have no idea where you got that fact.
01 | Game.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 ) |
11 | end ) |
You can insert a hint with the following code.
1 | m = instance.new( "Hint" , Workspace) |
2 | m.Text = "hi" --Whatever text you want it to say. |
6 YEARS LATER
1 | local hint = Instance.new( "Hint" ) |
2 | hint.Text = "THIS IS A HINT" |