About Me
Hello! I am currently a Roblox scripter. I specialize in both backend and frontend development. I have been scripting for around 5 years now. I first learned Python for about a year and a bit, then moved to Luau and have been studying and using it for almost 4 years now. This means I can guarantee clean, memory leak free, and highly optimized scripts. I’m also familiar with VS Code (Rojo, Wally, etc.) in case your game uses it, and I create open-source packages on Wally for Roblox games.
For the packages you can find them all at my Libraries GitHub Repository and the documentations can be found at Zak’s Libraries
Games I Worked/Working On
I have worked on Water Grill
- I was the game’s main scripter along side with the previous owner (1oMilann) which was the game’s builder. I have worked on the game for around 2 months.
I was working on the Blox n Canes Group (A group rebrand is currently happening 7/17/2025, in total the games had over 700k visits and the main game averaged 35-50 CCU )
- I am the game’s main scripter.
Availability
I am available.
Contacts
You can contact me via Discord (Username: @Unknown91248)
Some Projects I Made For Fun
PS: Some of these are kinda buggy or just not written in a proper way because they are kind of old.
If you want to hire me and you are looking to see how well my code is written, i’d recommend DMing me and asking me to do a certain task, since that’s the best way to prove my current skill.
-
Play Time Leaderboards (Weekly. Monthly, All Time) was an asset made for Water Grill
-
Spotify to Roblox Showcase. This is a simple project I worked on, it is not published for multiple reasons. However, the way it works is it firstly uses the spotify API to get what you are listening to and then lists the data and then it uses a different API to get the song’s synced lyrics (some songs dont have synced lyrics sadly) which makes it pretty similar to spotify’s lyrics feature… but in roblox.. idk why.
-
Room Generation Test is a simple room generation game that is purely random with a full rarity system for the rooms and other objects. It relies on module scripts which makes it easy to add new features to the game,
-
Simple Troll Obby Was tasked to make it in 2 hours
-
My take on admin commands It is a bit buggy and is unfinished because I have discontinued it.
-
A Rewind Game Made to showcase the games i have started out with on Roblox studio!
-
A Terrain Generation Game Made to help me understand how to use noise maps
-
Merging Frenzy A game I made with the task of finishing it within 1 hour.
-
An Auction Type Game I made this game for a couple of friends.
-
Server Data Stores A simple idea I made that saves a certain players data for that specific server only which means players can have different values saved in different servers (the place can be downloaded so you can see its module and an example script both in ServerScriptService)
-
The Horror Quiz A game I made taking inspiration from “The Survey”.
-
Similarity Test A game where you can check how similar you are to another player using certain variables like mutual friends, same letter in username or display name etc..
-
Service Creator This place can also be downloaded to view its source (in ServerScriptService) The MainModule is basically a script that can hold certain services (basically a custom service creator like game:GetService(“TweenService”) but instead your custom made service) let us say you have a shop and would like a service to manage the shops. Using this script you would make a service (for example “ShopService”) and then you would make a function for it like .CreateShop() and you assign it to a variable and then you can call that variable and maybe use a :SupplyFruit(, ) and more.. It will show how to create a service when opening the MainModule and will have the ShopService example (and a LogService).(this module was made for fun and might be useful in certain cases.)
Script Example
local ShopService = MainModule:GetService("ShopService")
local TestShop = ShopService.CreateShop("TestShop")
TestShop.SupplyFruit("Apple",20)