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
01 | local part = script.Parent |
02 | part.Parent = game.Workspace |
03 | local ChatService = game:GetService( "Chat" ) |
04 | function Clicked(player) |
05 | ChatService:Chat(part, ( "Hi there " ..player.Name), "Red" ) |
06 | wait ( 2 ) |
07 | ChatService:Chat(part, ( "How can i help you?" ), "Red" ) |
08 | end |
09 |
10 |
11 | script.Parent.ClickDetector.MouseClick:connect(Clicked) |
01 | local part = script.Parent |
02 | local Debounce = false |
03 | part.Parent = game.Workspace |
04 | local ChatService = game:GetService( "Chat" ) |
05 | function 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 |
13 | end |
14 |
15 |
16 | script.Parent.ClickDetector.MouseClick:connect(Clicked) |
To prevent that you can use a debounce.
I hope this helped you.
StopSpam = true
if not StopSpam then StopSpam = false
wait(1) StopSpam = true end
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.
01 | local canClick = true |
02 | local part = script.Parent |
03 | part.Parent = game.Workspace |
04 | local ChatService = game:GetService( "Chat" ) |
05 | function Clicked(player) |
06 | if not canClick then return end |
07 | canClick = false |
08 | ChatService:Chat(part, ( "Hi there " ..player.Name), "Red" ) |
09 | wait ( 2 ) |
10 | ChatService:Chat(part, ( "How can i help you?" ), "Red" ) |
11 | wait( 1 ) --or any time desired (in seconds) |
12 | canClick = true |
13 | end |
14 |
15 |
16 | script.Parent.ClickDetector.MouseClick:Connect(Clicked) |
Another fact is that connect
is deprecate. Use Connect
instead. You can read about deprecated items here.