Changed (Event)/property: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "</code>" to "</SyntaxHighlight>" |
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">" |
||
Line 10: | Line 10: | ||
{{Example| | {{Example| | ||
This code would print the value of each property of the Workspace, as well as its name, whenever it is changed: | This code would print the value of each property of the Workspace, as well as its name, whenever it is changed: | ||
<code lua> | <SyntaxHighlight code="lua"> | ||
Workspace.Changed:connect(function(property) | Workspace.Changed:connect(function(property) | ||
print(property .. ": ", Workspace[property]) | print(property .. ": ", Workspace[property]) | ||
end) | end) | ||
</SyntaxHighlight>}} | </SyntaxHighlight>}} |
Revision as of 03:53, 27 April 2023
Changed ( Property property ) | |
Description | Fired whenever a property of the object changes. |
---|---|
Member of: | Instance |
Example
This code would print the value of each property of the Workspace, as well as its name, whenever it is changed:
Workspace.Changed:connect(function(property)
print(property .. ": ", Workspace[property])
end)