User icon
i do not start controversy and only tell the truth


#gameGetServiceReplicatedStorageEventsTempleNPCMakeCultistNPCFireServer
Comments
  • User icon
    #npc = {}
    npc.__index = npc

    function npc.new(name,model,health)

    local t = setmetatable({Name = name,Model = model,Health = health},npc)
    print(t[1])
    return t
    end

    function npc:printNPC()
    print("name is ",self.Name)
    print("model is",self.Model)
    print("health is ",self.Health)
    end

    return npc