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
typed applications
JavaScript
web & backend
React
interfaces & systems
Docker
containers & delivery
GitHub / Git
collaborative workflow
Server building
deployment & infrastructure
Roblox / Luau
games & experiences
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...