Im trying to create a bool value so then another script can detect when an animation is playing. I stored the boolValue in ServerStorage but when i create a variable that references the boolValue, the output says boolValue does not exist in ServerStorage. Does anybody know why?
If it's truly inside ServerStorage, you are probably using a local script calling for that object.
Local scripts cannot see what is inside ServerStorage and ServerScriptService, this is due to client and server boundaries as they cannot see the same thing.
To solve this, place your BoolValue within ReplicatedStorage which both the server and client can see or use a remote request to have the server look for you in ServerStorage.