Skip to content

Instantly share code, notes, and snippets.

@liebertsx
liebertsx / keylib.lua
Last active June 18, 2024 13:47
roblax
local UILibrary = {}
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
function UILibrary:AnimateIn(frame)
frame.Position = UDim2.new(0.5, 0, 0.5, 0)
frame.AnchorPoint = Vector2.new(0.5, 0.5)
frame.Size = UDim2.new(0, 300, 0, 200)
frame.BackgroundTransparency = 1
--// Source
function obfuscate(source,VarName,WaterMark)
warn("Started obfuscate")
local Variable = VarName or "Taurus_"
local WM
if source == nil then
source = [[print("Hello World!")]]
end