i want to know how to make a hint appear when someone says something. for example:
archmantella13: $hint Hello
and then a hint saying archmantella13: Hello appears. Here is what i have:
1 | if string.sub(string.lower(msg), 1 , 2 ) = = "h/" then |
2 | text(speaker.Name .. ": " .. string.sub(msg, 3 ), 2 , "Hint" ,game.Workspace) |
3 | end |
All you'd need to do is change "h/" to whatever you want to do for it to work.
Put the following code in a ModuleScript
inside of a Folder
called "ChatModules" parented to Chat
(do all of this pre-runtime). Inside of ChatModules
, also have a BoolValue
called "InsertDefaulModules" set to true.
01 | local idsOfAdmins = { 128498925 , - 1 , 0 , game.CreatorId } -- put the id of people you want to be admin |
02 | local currentHint |
03 | local hintDisplayed = false |
04 | local gui = Instance.new( "ScreenGui" ) |
05 | gui.Name = "HintGui" |
06 | local hint = Instance.new( "TextLabel" ) |
07 | hint.Name = "Hint" |
08 | hint.Visible = false |
09 | hint.Size = UDim 2. new( 1 , 0 , 0 , 25 ) |
10 | -- Don't change position |
11 | hint.BackgroundColor 3 = Color 3. new() |
12 | hint.BorderSizePixel = 0 |
13 | hint.Font = Enum.Font.Legacy |
14 | hint.TextColor 3 = Color 3. new( 1 , 1 , 1 ) |
15 | hint.TextScaled = true |