dave2011
|
  |
| Joined: 02 Oct 2010 |
| Total Posts: 10581 |
|
|
| 10 Jul 2012 10:11 PM |
| like if a random string value in workspace changed it would print("value changed"), I looked it up in the wiki but I need an exampleee |
|
|
| Report Abuse |
|
|
miz656
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 15336 |
|
|
| 10 Jul 2012 10:12 PM |
game.Workspace.String.Changed:connect(function() print("value changed") end)
:p |
|
|
| Report Abuse |
|
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 10 Jul 2012 10:12 PM |
StringValue.Changed:connect(function(NewValue) print("Value Changed: ", NewValue) end) |
|
|
| Report Abuse |
|
|
dave2011
|
  |
| Joined: 02 Oct 2010 |
| Total Posts: 10581 |
|
| |
|