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:
1 | script.Parent.ClickDetector.MouseClick:Connect( function (plr) |
2 | repeat wait until plr.Chatted |
3 |
4 | plr.Chatted:Connect( function (msg) |
5 | if msg = = "yes" then |
6 | print ( "test" ) |
7 | end |
8 | end ) |
when i use it once, it works perfectly fine, but when i talk to him again, it fires twice.
I think it just keeps making event listeners so the solution would be to disconnect events as such:
1 | script.Parent.ClickDetector.MouseClick:Connect( function (plr) |
2 | repeat wait() until plr.Chatted |
3 | local connection |
4 | connection = plr.Chatted:Connect( function (msg) |
5 | if msg = = "yes" then |
6 | print ( "test" ) |
7 | connection:Disconnect() |
8 | end |
9 | end ) |