print(game.ServerStorage.BoolValue.Bool)
This is not that much of an important question I think, but I would like to know as this could possibly help with bool values in the future.
The bool at the end of the code is what I named the value.
My tutorial claims that this is the proper way to do it and that it should print either true or false (In this case false as that is what I set it to.
Instead of printing false, it instead just says that BoolValue is not a member of the server storage.
When I remove BoolValue, It just prints Bool.
Try adding .Value right after Bool, that should give you the value of the boolvalue instead of the name.