This is the situaion:
The ObjectValue is pointing to the TextButton and the LocalScript is connecting to it’s MouseButton1Click event.
(The order of creating these objects doesn’t matter)
task.wait(3)
local val = script.Parent.ObjectValue
val.Value.MouseButton1Click:Connect(function()
print("clicked")
end)
I expected the function to run, but it doesn’t do anything when the button is clicked.
I also tried other events like Changed, InputChanged, MouseEnter etc. but the behaviour is the same.
This also is the case for other Instances like Folder or Part (Changed event didn’t run on change)
However if the TextButton is put into the same ScreenGui as the ObjectValue it works as expected.
System Information: Windows 10, Intel Core i7-8750H @ 2.20GHz, 32 GB RAM, NVIDIA GeForce GTX 1050
EDIT:
After investigating a little more, it seems like the ObjectValue is pointing to the objects in StarterGui after running and doesn’t change to the PlayerGui.
I don’t even need to put it into the same ScreenGui, I can just do this:
which now, after you explained it, works. Even though this is the expected behaviour I would expect the StarterGui to behave like the folder in the example above. It would be more consistent with that folder’s behaviour (which the StarterGui’s icon implies - atleast for me)
I have one more question, why does the ScreenGui always reset when respawning (even though ResetOnSpawn is set to false) when it is put into a Folder? Does the code check just the UIs parented under StarterGui or is it something else?
Because it just loops through StarterGui:GetChildren and applies the rules to each child, it doesn’t explore the entire hierarchy.
Imagine if you had one ScreenGui with Reset = false and another with Reset = true in the same folder… what would it even do with the folder? Or even worse a ScreenGui with Reset = false inside of one with Reset = true. Once you start exploring the idea of it looking deeper in the hierarchy you end up with a lot of awkward questions.