I have it so if a player presses /
and then types something in that text that they typed in would go in a text box. It's like the roblox chatting, except I want it to be custom. Can anybody point me in the right direction?
1 | local player = game.Players.LocalPlayer |
2 | local mouse = player:GetMouse() |
3 |
4 | mouse.KeyUp:connect( function (key) |
5 | if key:byte() = = 47 then |
6 | script.Parent.ChatBox.Selected = true --Selected doesn't work. What will? |
7 | end |
8 | end ) |
You need :CaptureFocus()