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

Is there a script for custom chat that tells us that a player is typing?

Asked by 3 years ago

I am new to scripting and have no idea of how to script. I want to make custom chat that tells us that the player is typing by showing the three dots in the chat bubble. An example would be like the royale high chat.

0
Royale high has a amazing scripter and thats how it was done. But I would think you would make a script that detects words going into the chat and then if words going in chat it shows the typing over the head DuckyRobIox 280 — 3y
0
TextLabel:GetPropertyChangedSignal("Text"):Connect(Callback) Ziffixture 6913 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

I'm not a professional, but you should use the second parameter in .InputBegan

local UIS = game:GetService("UserInputService")

UIS.InputBegan:Connect(function(input, isTyping)
    if isTyping then
        print("Player is currently typing")
    end
end)
0
GameProcessed is a Boolean indicating whether a Core processed the same Input. Ziffixture 6913 — 3y
Ad

Answer this question