Skip to content

Instantly share code, notes, and snippets.

View BasedOnWhat's full-sized avatar
😎

swagalicious BasedOnWhat

😎
View GitHub Profile
@zeux
zeux / luau_features.pdf
Last active October 2, 2025 23:32
Frequently asked questions about the Lua VM work we (Roblox) are doing.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
-- black frames not included
local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")
local Camera = Workspace.CurrentCamera
local Module = {}
Module.Position = UDim2.new(0, 0, 0, 0)
@alureon
alureon / rbxmulti.c
Last active February 12, 2023 16:34
ROBLOX multiple clients
#include <windows.h>
#include <stdio.h>
int main(int argc, char *argv[])
{
HANDLE mutex = CreateMutexA(NULL, TRUE, "ROBLOX_singletonMutex");
puts("Enter 'q' to quit");
while (getchar() != 'q');