Answered by
6 years ago Edited 6 years ago
It mostly depends on what gui element your going to have them interact with. For a button of any type.
1 | local guiElement = script.Parent |
3 | guiElement.MouseButton 1 Click:Connect( function () |
And if you wanted to see when a user sends a message in chat you would use:
1 | game.Players.LocalPlayer.Chatted:Connect( function (chat) |
There isn't any event for when the player starts typing in chat though. So there isn't a 100% reliable way to see when a player is typing in chat without redoing the whole chat gui.
If this answer helped be sure to accept it so we both get some rep :)