Help! Models not showing up?

from direct.showbase.ShowBase import ShowBase


class Window(ShowBase):

    def _init_(self):
        ShowBase.__init__(self)
        self.loadmodels()
        self.useDrive()


    def loadmodels(self):
        self.ttd = loader.LoadModel("C:\Panda3D-1.9.3-x64\toontown_central.bam")
        self.reparentTo(render)



game = Window()

game.run()

When ever i run that, I get a window with a blank(grey-ish) screen. I’ve tried just using “toontown_central.bam” and the model is in the main folder, I tried using other models as well. They don’t work either.

I think you mean

self.ttd.reparentTo(render)

Checkout https://www.panda3d.org/manual/index.php/Loading_Models