Skip to content

Instantly share code, notes, and snippets.

View Lypt1x's full-sized avatar
:shipit:

Lypt1x Lypt1x

:shipit:
  • 0xFFFFFFFFFF
  • 22:25 (UTC +02:00)
View GitHub Profile
@Lypt1x
Lypt1x / display-beam-data.luau
Created May 24, 2026 11:49
Render custom images in Roblox using only Beam instances: `png-to-beam-data.js` converts a PNG into Luau RGB beam data, and `display-beam-data.luau` renders it without uploaded image assets or EditableImage.
--[[
Showcase: image rendering in Roblox using only Beam instances and
pre-generated RGB color data, without uploading an image asset or using
EditableImage, which is usually the preferred way to display custom images.
Ref: https://www.reddit.com/r/ROBLOXExploiting/comments/1tlhdpz/image_bypass_roblox/
Prev: https://ibb.co/vxHWzbhd
]]
local Workspace = game:GetService("Workspace")
@Lypt1x
Lypt1x / EmoteWheelEditor.lua
Last active May 12, 2026 17:31
Roblox Emote Wheel Editor - right-click emote wheel slots to swap emotes by ID, right-click center to steal another player's equipped emotes. Roblox-native UI, live preview, search.
if getgenv().__EMOTE_EDITOR then pcall(function() getgenv().__EMOTE_EDITOR.Disconnect() end) end
local Players = game:GetService("Players")
local UIS = game:GetService("UserInputService")
local TS = game:GetService("TweenService")
local MPS = game:GetService("MarketplaceService")
local GS = game:GetService("GuiService")
local CoreGui = game:GetService("CoreGui")
local lp = Players.LocalPlayer