Available for work · time for me right now is —
My Portfolio
Solo Roblox developer. I build, animate, and code full games myself.
99K+player visits
3projects
4languages
// languages
Languages
Luau is my main language, but not the only one.
Luau
C++
Python
Java
local Players = game:GetService("Players")
local function onJoin(player)
local data = DataStore:load(player.UserId)
player:SetAttribute("Coins", data.coins or 0)
print(player.Name .. " is in")
end
Players.PlayerAdded:Connect(onJoin)
// fold a vector down to one number
#include <vector>
int sum(const std::vector<int>& xs) {
int total = 0;
for (int x : xs) total += x;
return total;
}
# nth fibonacci, no recursion drama
def fib(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
print([fib(i) for i in range(10)])
public class Greeter {
public static void main(String[] args) {
String who = args.length > 0 ? args[0] : "world";
System.out.println("hi, " + who);
}
}
// projects
Projects
// contact me
Contact me
The best way to reach me is on Discord. Send me your idea, even if it's rough.