This error means that an object you’re trying to find a child of doesn’t exist.
If you’re doing this on the client, the things you’ve put in ReplicatedStorage (in this case, Game and its children) won’t be loaded immediately. You might want to replace FindFirstChild() with WaitForChild() so that the script can wait for the children to appear if they aren’t already there instead of just returning nil.