Loading the Grassy Scenery

You need to un-capitalize Models.
So this:

environ = loader.loadModel(“Models/environment”)

should be :
environ = loader.loadModel(“models/environment”)

It gives you the "AttributeError: ‘None Type’ object has no attribute ‘reparentTo’ error since it never loaded the scene so it can’t parent it to something. In python capitalization is important.