local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("OpScripts - Scary baboon remaster", "DarkTheme") local tab = window:NewTab("Main") local section = tab:NewSection("Main") section:NewButton("Go in staff", "Goes to staff room", function() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetCFrame = CFrame.new(Vector3.new(-8, 37, 651)) root.CFrame = targetCFrame end) section:NewButton("Go to spawn", "Goes to spawn", function() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetCFrame = CFrame.new(Vector3.new(-54, 38, 736)) root.CFrame = targetCFrame end)