Hey ! i have a small problem, i don’t understand why
i made a menu UI that worked nice since now, i have a backup of my menu and it works well, i changed nothing and it tell me "“Accessed None trying to read property UI”
If this is Multiplayer, you need to check for authority when you try to add a menu to the screen, this should not be called for a non local player or function.
“Accessed None” errors are issues with referencing. In the first screen shot you have a variable called “UI”. I don’t see you “set” this variable anywhere. Hence it is a null reference and when you try and use it, you get the “Accessed None” error. Check out video #1 on casting and #25 on creating references as these two are interrelated and the source of your error. Once you understand how to properly create a reference (by casting or other means I go over in the videos) you will be able to properly set the “UI” variable and you won’t get this error when you use it.