Changed (Event)/property: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
No edit summary
>Trappingnoobs
removed category methods
Line 14: Line 14:
game.Workspace.Changed:connect(wChange)
game.Workspace.Changed:connect(wChange)
</pre>}}
</pre>}}
[[Category:Methods]]

Revision as of 19:16, 1 February 2012

Changed ( String Property )
Description Fired after the specified property is changed.
Member of: Instance


Example
local function wChange(prop)
  print(prop) --most likely DistributedGameTime
end
game.Workspace.Changed:connect(wChange)