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

Help me prevent spamming this dialog script! [Easy fix] ?

Asked by 6 years ago

I have this script that you can click and it will read a dialog, But you can spam it and its so game breaking! Please help

01local part = script.Parent
02part.Parent = game.Workspace
03local ChatService = game:GetService("Chat")
04function Clicked(player)
05    ChatService:Chat(part, ("Hi there "..player.Name), "Red")
06wait (2)
07ChatService:Chat(part, ("How can i help you?"),"Red")
08end
09 
10 
11script.Parent.ClickDetector.MouseClick:connect(Clicked)

4 answers

Log in to vote
0
Answered by
Mr_Unlucky 1085 Moderation Voter
6 years ago
01local part = script.Parent
02local Debounce = false
03part.Parent = game.Workspace
04local ChatService = game:GetService("Chat")
05function Clicked(player)
06    if Debounce == false then
07       ChatService:Chat(part, ("Hi there "..player.Name), "Red")
08       Debounce = true
09       wait (2)
10       ChatService:Chat(part, ("How can i help you?"),"Red")
11       Debounce = false
12    end
13end
14 
15 
16script.Parent.ClickDetector.MouseClick:connect(Clicked)
0
Thanks! Vibesgus 35 — 6y
Ad
Log in to vote
0
Answered by
angeI1001 123
6 years ago

To prevent that you can use a debounce.

I hope this helped you.

0
How would that help me? Lol Vibesgus 35 — 6y
0
Debounce allows a function to be fired once and cannot be fired again for a period of time. angeI1001 123 — 6y
0
Ok Thanks for the information! Vibesgus 35 — 6y
Log in to vote
0
Answered by 6 years ago

StopSpam = true

if not StopSpam then StopSpam = false

wait(1) StopSpam = true end

Log in to vote
0
Answered by
piRadians 297 Moderation Voter
6 years ago
Edited 6 years ago

Debounce.

You could be using debounce, this way people will only be able to do a certain action on a specific amount of time.

Debounce is structured with booleans, and in your case you would have to do the following:

  • Define a true boolean.

  • Add an if statement which will return nil if the previous boolean hasn't met thetrue condition.

  • Make the previous boolean false.

  • Wait for a specific time.

  • Make it true again.

Practice:

01local canClick = true
02local part = script.Parent
03part.Parent = game.Workspace
04local ChatService = game:GetService("Chat")
05function Clicked(player)
06if not canClick then return end
07canClick = false
08ChatService:Chat(part, ("Hi there "..player.Name), "Red")
09wait (2)
10ChatService:Chat(part, ("How can i help you?"),"Red")
11wait(1) --or any time desired (in seconds)
12canClick = true
13end
14 
15 
16script.Parent.ClickDetector.MouseClick:Connect(Clicked)

Another fact is that connect is deprecate. Use Connect instead. You can read about deprecated items here.

0
Ok Thanks! Vibesgus 35 — 6y

Answer this question