local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("OpScripts - Lethal ape 52", "DarkTheme") local tab = window:NewTab("Main") local section = tab:NewSection("Main") section:NewButton("Remove owner door", "Removes owner door", function() local ownerdoor = game.workspace:WaitForChild("OwnerOnlyScriptInHere", 1) if ownerdoor then ownerdoor:Destroy() end end) section:NewButton("To owner room", "goes to owner room", function() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetcframe = CFrame.new(-403, 59, -400) root.CFrame = targetcframe end)