Version is not a valid member of Configuration... but it is?
So I have this simple code:
1 | local Config = Parent:WaitForChild( 'Config' ); |
3 | local Version = Parent:WaitForChild( 'Version' ).Value; |
And it always gives me the infinite yield warning. I try:
1 | local Version = Parent.Version.Value; |
And it says "Version is not a valid member of Configuration".
Here's the thing though, I have a value in Config
called Foobar
and I can access that perfectly fine.
Screenshot of Config folder
What's happening here?