I've seen it done. I want this text to appear on a surface GUI (textlabel) placed somewhere else, but this textbox will be a screenGUI given to a specific rank in a group only.
Anyways, all I need to know is how to fetch the text typed by the user in the textbox. I hope this doesn't get moderated.
Thanks!
Use a local script
Mouse = game.Players.LocalPlayer:GetMouse() Mouse.KeyDown:connect(function(key) lowerkey = string.lower(key) if lowerkey == "k" then --code here end end)