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
| 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 |
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
| --// 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 |