ItemAdded (Event)

From Goodblox Wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Event
Syntax ItemAdded( Instance instance )
Description: This function fires when a Configuration or VehicleSeat is added to the DataModel.
In Object: CollectionService


Example

game:GetService("CollectionService").ItemAdded:connect(function(instance)
     print(instance.className.." added to DataModel")
end)
 
Instance.new("Part", workspace) --// Doesn't fire because CollectionService doesn't watch Parts
Instance.new("Configuration", workspace) --> Configuration added to DataModel