|
| 23 Aug 2014 10:22 PM |
So, I want to make a button add a letter to a text box. I'm a bit of a noob to scripting, and, don't really know how simple or complicated this would be.
I want it so that where you press a button, it adds a word to the texbox, like a keyboard would. I know how to change the textbox and all that, but how do I just make it "add" a single letter? |
|
|
| Report Abuse |
|
|
|
| 23 Aug 2014 10:23 PM |
| if you have clearonfocus people can type what they want |
|
|
| Report Abuse |
|
|
|
| 23 Aug 2014 10:25 PM |
| Tis not what I asked, though. |
|
|
| Report Abuse |
|
|
|
| 23 Aug 2014 10:27 PM |
| Do you want it to add the letter pressed into the TextBox?. |
|
|
| Report Abuse |
|
|
|
| 23 Aug 2014 10:27 PM |
script.Parent.MouseButton1Down:connect(function()
script.Parent.Parent.TextBox.Text = script.Parent.Parent.TextBox.Text.."; keyhere"
end) |
|
|
| Report Abuse |
|
|
| |
|