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 lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/UI-Libraries/main/Orion/Source.lua"))() | |
local win = lib:MakeWindow({Name="Freeze Pets", IntroText="Freeze System"}) | |
local freeze, pos, setPos = false, Vector3.new(), false | |
local tab = win:MakeTab({Name="Freeze", Icon="rbxassetid://4483345998"}) | |
tab:AddToggle({Name="❄️ Freeze Pets", Default=false, Callback=function(v) freeze = v end}) | |
tab:AddButton({Name="📍 Set Position", Callback=function() | |
pos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,5,0) |