ChildAdded script not working?
Asked by
u_g 90
11 years ago
I made a "ChildAdded" script, but it doesn't seem to work. It's supposed to change the text of a Gui in a player when a child is added into the "leaderstats" model. For some reason, it's not working, or even detecting the child being added. I tried a "script.Parent.ChildAdded:connect(function(child)" kind of thing, too, but that doesn't work either. Here's the script:
1 | local function onChildAdded(child) |
2 | print ( "Script has detected a child added" ) |
3 | script.Parent.Parent.PlayerGui.Notifications.Play.Text = ( "1" ..child.Name.. "added to inventory" ) |
5 | script.Parent.Parent.PlayerGui.Notifications.Play.Text = " " |
7 | script.Parent.ChildAdded:connect(onChildAdded) |