Sano
Building Scalable Game Systems
Focused on creating modular, high-performance systems for complex Roblox experiences using Roblox-TS and Luau.
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local RADIUS = 6
local SPEED = 2
local function updatePets(player, pets, time)
local character = player.Character
if not character then return end
local root = character:FindFirstChild("HumanoidRootPart")
if not root then return end
for i, pet in ipairs(pets) do
local angle = (i / #pets) * math.pi * 2 + time * SPEED
local offset = Vector3.new(
math.cos(angle) * RADIUS,
1.5,
math.sin(angle) * RADIUS
)
pet:PivotTo(root.CFrame * CFrame.new(offset))
end
end
RunService.Heartbeat:Connect(function(dt)
local time = tick()
for _, player in ipairs(Players:GetPlayers()) do
local pets = workspace.Pets:FindFirstChild(player.Name)
if pets then
updatePets(player, pets:GetChildren(), time)
end
end
end)About
Who I Am
I am a Roblox developer focused on building scalable, modular, and high-performance systems for complex game experiences. My approach to development emphasizes clean, maintainable, and extensible code with system-driven design over hardcoded logic.
I primarily work with Roblox-TS, allowing me to apply strong typing, clean architecture patterns, and advanced engineering practices. My workflow includes tools such as Rojo for project structuring and Wally/Pesde for dependency management.
Overall, I aim to create Roblox experiences that feel closer to full-scale games, with solid technical foundations and long-term vision.
TS
Roblox-TS
Lua
Luau
{ }
Clean Architecture
Skills
Technical Stack
Roblox-TS
Strong typing, clean architecture patterns, and advanced engineering practices for scalable game systems.
Luau
Native Roblox scripting with performance optimizations and type annotations for reliable game logic.
Rojo & Tooling
Modern development workflow with Rojo for project structuring and Wally/Pesde for dependency management.
DataStore Systems
Multi-server data consistency with safe update strategies and robust save/load patterns. (ProfileStore for player data)
Networking
Typed communication layers using rbx-net, middleware systems, and permission handling.
Optimization
Performance-focused design with streaming, efficient algorithms, and early-stage optimization.
Featured Project
Tech Island
A large-scale sandbox/automation game where players gather resources, build machines, and optimize production systems. Designed with long-term scalability in mind, featuring a fully reworked architecture that supports frequent updates and content expansion.
Machine Pipelines
Automation systems with farming mechanics and production chains
Custom Serialization
NBT-like structures using buffers and compound patterns
Analytics Systems
In-game economy tracking and logging for data-driven decisions
Player Progression
Stats, achievements, playtime tracking, and exploration systems
Tech Island
Sandbox / Automation
Modular
Plugin-based systems
Scalable
Long-term architecture
Typed
Full TypeScript
Fast
Performance-first
Built with Roblox-TS, and modern tooling for rapid content creation and maintainability.
Expertise
What I Bring to Projects
System Architecture
- —Modular plugin-based systems for rapid content creation
- —Data-driven gameplay systems (resources, machines, farming)
- —Custom serialization (NBT-like structures with buffers with binary objects)
- —System-driven design over hardcoded logic
Networking & Data
- —Typed communication layers (remo, middleware)
- —Permission systems and secure networking
- —Multi-server data consistency with DataStores
- —Safe update strategies and data migration
Player Experience
- —Progression tracking (stats, achievements, playtime)
- —UI systems with dynamic theming
- —Notification and update delivery systems
- —Exploration and discovery mechanics
Development Philosophy
- —Clean, maintainable, and extensible code
- —Performance optimization from early stages
- —Building tools that accelerate future development (dedicated plugins and more)
- —Long-term scalability and vision
Contact
Let's Work Together
Interested in collaborating on a Roblox project? Whether you need scalable game systems, custom tools, or technical consultation, I'd love to hear from you.
Built with passion for creating Roblox experiences that feel closer to full-scale games.
© 2026 — Roblox Developer Portfolio