Skip to content

Instantly share code, notes, and snippets.

View mrparkerlol's full-sized avatar
😸

Jacob Parker mrparkerlol

😸
View GitHub Profile
@mrparkerlol
mrparkerlol / roblox.sh
Last active June 29, 2025 01:46
Patch to download Roblox on Apple Silicon rather than the Intel build.
#!/bin/bash
show_fps_prompt=0
unlock_fps () {
if [[ ! -d /Applications/Roblox.app/Contents/MacOS/ClientSettings ]]; then
mkdir /Applications/Roblox.app/Contents/MacOS/ClientSettings
fi
# https://stackoverflow.com/a/32890622
@mrparkerlol
mrparkerlol / MidTemplate.lua
Created May 24, 2023 23:52
Part of the UI code for a custom player list, using Roact
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Roact = require(ReplicatedStorage.Packages.Roact)
local MidTemplate = Roact.Component:extend("MidTemplate")
local HeaderText = require(script.Parent.HeaderText)
function MidTemplate:render()
return Roact.createElement("Frame", {
BackgroundTransparency = 1,
@mrparkerlol
mrparkerlol / LeaderstatsService.lua
Created May 24, 2023 23:41
Server-side code updates and handles the leaderstats for all clients
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Knit = require(ReplicatedStorage.Packages.Knit)
local LeaderstatsService = Knit.CreateService {
Name = "LeaderstatsService",
Client = {
LeaderstatsChanged = Knit.CreateSignal()
}
}