local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local window = library.CreateLib("OpScripts - Scary Baboon", "DarkTheme") local tab = window:NewTab("Main") local section = tab:NewSection("Main") section:NewButton("Give staff (some things work)", "lets you go in staff door", function() local door1 = workspace.StaffDoor:FindFirstChild("door1") if door1 then door1:Destroy() end local part = workspace:FindFirstChild("part") if part then local children = part:GetChildren() if children[215] and children[215]:FindFirstChild("StaffFloorAccessControl") then children[215].StaffFloorAccessControl:Destroy() end end for _, obj in pairs(workspace:GetDescendants()) do if obj.Name == "StaffFloor" then for _, child in pairs(obj:GetDescendants()) do if child.Name == "StaffFloorAccessControl" or child.Name == "TouchInterest" then child:Destroy() end end end end for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") and obj.Name == "Part" then for _, child in pairs(obj:GetChildren()) do if child.Name == "TouchInterest" or child.Name == "StaffFloorAccessControl" then child:Destroy() end end end end end) section:NewButton("Free vip", "Gives vip", function() workspace.vipgate:Destroy() end) section:NewButton("Remove items that kick u", "Removes items with hardcoded ac", function() local models = workspace:FindFirstChild("models") if not models then return end for _, obj in pairs(models:GetDescendants()) do if obj.Name == "bohre" then local union = obj:FindFirstChild("Union1") if union then local toolequip = union:FindFirstChild("ToolEquipScript") if toolequip then toolequip:Destroy() end local prompt = union:FindFirstChild("ProximityPrompt") if prompt then prompt:Destroy() end end end end end) section:NewButton("Set 40 walkspeed", "if you use a morph use this to go normal speed", function() local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local hum = character:WaitForChild("Humanoid") hum.WalkSpeed = 40 end) section:NewButton("Out of staff", "Tps you out of 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(-280, 364, 354) root.CFrame = targetcframe end) section:NewButton("In staff (ONLY USE MORPHS THE ROOM UR IN)", "Tps you in 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(-254, 282, 258)) root.CFrame = targetcframe end) local antimodactive = false local modlist = {"TheEpicGamer123968", "SaltedCaramel0013", "legobuildslave", "Lucasformigoni2020", "Jdncmcncmxnsnsm", "ZugLOLGamer", "Bohrey12", "SaltedCaramel12000", "wifibIood"} section:NewToggle("Anti Mod", "If anyone with staffdoor joins you get kicked", function(state) antimodactive = state end) section:NewButton("In CC Room", "Tps you in CC room (use out of staff to go out)", function() local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetcframe = CFrame.new(-375, 365, 315) root.CFrame = targetcframe end) section:NewButton("Remove jumpscares", "Removes all jumpscares (you can still die)", function() local player = game.Players.LocalPlayer local playergui = player:WaitForChild("PlayerGui") local playerscripts = player:WaitForChild("PlayerScripts") local playjssound = playerscripts["play jumpscare sound"] if playjssound then playjssound:Destroy() end for _, gui in ipairs(playergui:GetChildren()) do if gui.Name:lower():sub(1, 10) == "jumpscare_" then gui:Destroy() end end end) local function checkplayer(player) if antimodactive then for _, name in pairs(modlist) do if player.Name == name then game.Players.LocalPlayer:Kick("OpScripts - anti mod") break end end end end