Hmota1
|
  |
| Joined: 16 Apr 2016 |
| Total Posts: 735 |
|
|
| 20 Sep 2017 08:58 AM |
input = script.Parent.TextBox output = script.Parent.TextLabel
input.Text.Changed:connect(function() if input.Text == "test" then output.Text = "testing too" end end)
...
|
|
|
| Report Abuse |
|
|
|
| 20 Sep 2017 09:40 AM |
Text is a string, and strings don't have Changed events.
input.Changed:Connect(function(property) if property=="Text" then
|
|
|
| Report Abuse |
|
|
| |
|