I get shit done.

I'm oz6nn, a developer focused on polished Roblox experiences, dependable backend systems, and thoughtful web products.

Career highlights

Contributedto28M+RobloxGameVisits,30+HappyClients,8+YearsofExperience.

28M+

Roblox game visits

30+

happy clients

8+

years of experience

I am skilled in..

TypeScript logo

TypeScript

typed applications

JavaScript logo

JavaScript

web & backend

React logo

React

interfaces & systems

Docker logo

Docker

containers & delivery

GitHub / Git logo

GitHub / Git

collaborative workflow

Server building logo

Server building

deployment & infrastructure

Roblox / Luau logo

Roblox / Luau

games & experiences

Discord bots logo

Discord bots

automation & tooling

A look at my code

Small examples of how I structure backend services, Roblox systems, and community tooling.

routes/nottelling.tstypescript
import { ActionRowBuilder, ButtonBuilder, ButtonStyle, EmbedBuilder, type Client } from 'discord.js';
import { .... } from '../...';
import type { ...c } from './...';

export function backgroundCheckLogViewRow(userId: number, memberId: string): ActionRowBuilder<ButtonBuilder> {
  return new ActionRowBuilder<ButtonBuilder>().addComponents(
    new ButtonBuilder()
      .setCustomId('...')
      .setLabel('View ...')
      .setStyle(ButtonStyle.Primary)
  );
}

export async function log(
  client: Client,
  check: ...,
  memberId: string...