local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("Garfield", "DarkTheme") -- Main local Main = Window:NewTab("Main") local MainSection = Main:NewSection("Main") MainSection:NewButton("Fling Npc", "Will Remove Npx kind of", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/2567-rblx/scripts/main/Notoriety/RemoveNPCs.lua",true))() end) MainSection:NewButton("Stamina Increase", "Increase your stamina", function() local plr = game.Players.LocalPlayer.Name local v = game:GetService("Workspace").Criminals[plr] v.MaxStamina.Value = 10000 end) MainSection:NewButton("Fill Stamina", "Fills Stamina", function() local plr = game.Players.LocalPlayer.Name local v = game:GetService("Workspace").Criminals[plr] v.Stamina.Value = 10000 end) -- ITEM ESP TOGGLE local itemEspParts = {} local foldersToESP = { "Lootables", "BigLoot" } local function clearESP(parts) for _, v in pairs(parts) do if v[1] and v[1]:IsA("BillboardGui") then v[1]:Destroy() end end table.clear(parts) end MainSection:NewToggle("Item ESP", "Highlights items in workspace", function(state) clearESP(itemEspParts) if state then for _, folderName in ipairs(foldersToESP) do local folder = workspace:FindFirstChild(folderName) if folder then for _, model in pairs(folder:GetChildren()) do if model:IsA("Model") then local targetModel = nil local childrenModels = {} for _, child in pairs(model:GetChildren()) do if child:IsA("Model") then table.insert(childrenModels, child) end end if #childrenModels == 0 then targetModel = model elseif #childrenModels == 1 then if childrenModels[1].Name == "Model" then targetModel = model else targetModel = childrenModels[1] end else for _, childModel in pairs(childrenModels) do if childModel.Name ~= "Model" then targetModel = childModel break end end if not targetModel then targetModel = model end end local part = targetModel.PrimaryPart or targetModel:FindFirstChildWhichIsA("BasePart") if part then local billboard = Instance.new("BillboardGui") billboard.Name = "ESP_Item" billboard.Adornee = part billboard.Size = UDim2.new(0, 120, 0, 30) billboard.StudsOffset = Vector3.new(0, 2, 0) billboard.AlwaysOnTop = true billboard.Parent = part local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(0, 170, 255) label.TextStrokeTransparency = 0 label.Font = Enum.Font.Code label.TextSize = 16 label.Text = targetModel.Name label.Parent = billboard table.insert(itemEspParts, { billboard }) end end end end end end end) -- Misc local Misc = Window:NewTab("Misc") local MiscSection = Misc:NewSection("Misc") MiscSection:NewButton("Shadow Raid Farm", "Buggy a bit", function() pcall(loadstring(game:HttpGet("https://gist.githubusercontent.com/Shag420/81729093f28d782a02ca295cf835a1ba/raw"))()); end) MiscSection:NewButton("Tp bags to van", "Most maps work", function() for i,v in pairs(game:GetService("Workspace").Bags:GetDescendants()) do if v.Name == 'MoneyBag' then v.CFrame = game:GetService("Workspace").BagSecuredArea.FloorPart.CFrame end end end) MiscSection:NewButton("Admin Bar", "Op", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/Sinscrips/roblox-scripts/main/Notoriety.lua', true))() end) MiscSection:NewButton("Gun Mods/Infinite Skill Points", "Basic Gui", function() loadstring(game:GetObjects("rbxassetid://4763830754")[1].Source)() end) MiscSection:NewButton("GUI", "Gui", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Lucas559-noob/Roblox-Scripts/main/Notoriety",true))() end)