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

How to make a hint admin command?

Asked by
ANE_bot 17
5 years ago

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:

1if string.sub(string.lower(msg),1,2) == "h/" then
2text(speaker.Name .. ": " .. string.sub(msg,3),2,"Hint",game.Workspace)
3end
0
Your current code is pretty much perfect! Just make sure that the user prefixes their message with "$hint" and then make the hint thebayou 441 — 5y
0
We'd need to see what the text function is. Assuming this is from an admin script from Free Models, just change "h/" to "$hint" and 1,2 to 1,5 and msg,3 to msg,6 Shawnyg 4330 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago

All you'd need to do is change "h/" to whatever you want to do for it to work.

0
thx for making me learn the chat system, i was able to answer this guy's question because of it! throwawayaccount2001 102 — 5y
Ad
Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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.

01local idsOfAdmins = {128498925, -1, 0, game.CreatorId} -- put the id of people you want to be admin
02local currentHint
03local hintDisplayed = false
04local gui = Instance.new("ScreenGui")
05gui.Name = "HintGui"
06local hint = Instance.new("TextLabel")
07hint.Name = "Hint"
08hint.Visible = false
09hint.Size = UDim2.new(1,0,0,25)
10-- Don't change position
11hint.BackgroundColor3 = Color3.new()
12hint.BorderSizePixel = 0
13hint.Font = Enum.Font.Legacy
14hint.TextColor3 = Color3.new(1, 1, 1)
15hint.TextScaled = true
View all 79 lines...

Answer this question