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

how to make click detectors detect when the player chats ?

Asked by 4 years ago

ok so the tile explains itself, i want to make that when the player click the part a dialogue pops up (done) but to response the dialogue u need to type in chat, but it just detects the message multiple times

code:

1script.Parent.ClickDetector.MouseClick:Connect(function(plr)
2repeat wait until plr.Chatted
3 
4plr.Chatted:Connect(function(msg)
5    if msg == "yes" then
6        print("test")
7    end
8end)

when i use it once, it works perfectly fine, but when i talk to him again, it fires twice.

1 answer

Log in to vote
1
Answered by 4 years ago

I think it just keeps making event listeners so the solution would be to disconnect events as such:

1script.Parent.ClickDetector.MouseClick:Connect(function(plr)
2repeat wait() until plr.Chatted
3local connection
4connection = plr.Chatted:Connect(function(msg)
5    if msg == "yes" then
6        print("test")
7    connection:Disconnect()
8    end
9end)
1
works perfectly MacGames007 114 — 4y
Ad

Answer this question