Skip to content

Instantly share code, notes, and snippets.

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)