Skip to content
View zurai02's full-sized avatar

Block or report zurai02

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
zurai02/README.md

πŸ› οΈ Luau & Lua Systems Engineer | zurai02 πŸ‘‹

zurai02's Profile Views DevForum Profile


πŸš€ About Me

I am a Roblox developer specializing in backend systems, secure data handling, and optimized network structures. I write clean, modular, and memory-efficient Luau code designed to scale seamlessly in large-scale experiences.

  • πŸ’¬ Ask me about: Roblox Luau, Client-Server Replication, Object-Oriented Programming (OOP).
  • βš™οΈ Workflow Tools: Roblox Studio, VS Code, Git, Rojo.

πŸ’» Code Architecture Showcases

Since this is my primary portfolio page, here are the direct implementation structures of systems I design:

1. Modern ModuleScript Pattern (OOP)

--!strict
local PlayerService = {}
PlayerService.__index = PlayerService

type PlayerData = {
    UserId: number,
    Points: number,
    Inventory: {string}
}

function PlayerService.new(player: Player): PlayerData
    local self = setmetatable({}, PlayerService)
    
    self.UserId = player.UserId
    self.Points = 0
    self.Inventory = {}
    
    return self
end

function PlayerService:AddPoints(amount: number)
    self.Points += amount
    -- Fire secure RemoteEvent to replicate to client safely here
end

return PlayerService

2. Network Replication & Event Safety

--!strict
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local NetworkEvent = ReplicatedStorage:WaitForChild("NetworkEvent") as RemoteEvent

-- Secure server-side validation handler
NetworkEvent.OnServerEvent:Connect(function(player: Player, actionType: string)
    if typeof(actionType) ~= "string" then return end -- Anti-exploit type check
    
    if actionType == "RequestPurchase" then
        -- Process server-validated transaction logic safely
        print(player.Name .. " requested a verified purchase.")
    end
end)

πŸ“Š Live GitHub Analytics

zurai02's GitHub stats Top Langs


πŸ”— Let's Connect

  • 🌐 Roblox Developer Forum: Check my community updates on the Roblox DevForum Profile
  • πŸ’Ό Availability: Open for freelance script optimization, framework design, and game system engineering.

Popular repositories Loading

  1. zurai02.github.io zurai02.github.io Public

    JavaScript

  2. register register Public

    Forked from is-a-dev/register

    Grab your own sweet-looking '.is-a.dev' subdomain.

    JavaScript

  3. Redirection.io Redirection.io Public

    TypeScript

  4. Exploiter-sfreecandy-for-you Exploiter-sfreecandy-for-you Public

  5. roblox-optimizer roblox-optimizer Public

    JavaScript

  6. Invincible-Fly Invincible-Fly Public