This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| 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") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |