--Open Source😮‍💨 local P=game:GetService("Players") local LP=P.LocalPlayer local safe={} local function reg(t)safe[t]=true end local function scan() local b=LP:WaitForChild("Backpack") for _,v in ipairs(b:GetChildren())do if v:IsA("Tool")then reg(v)end end if LP.Character then for _,v in ipairs(LP.Character:GetChildren())do if v:IsA("Tool")then reg(v)end end end end local function hook(c) c.ChildAdded:Connect(function(o) if not o:IsA("Tool") then return end if safe[o] then return end pcall(function() o:Destroy() end) warn("Deleted:",o.Name) end) end scan() if LP.Character then hook(LP.Character) end LP.CharacterAdded:Connect(function(c) task.wait(0.1) scan() hook(c) end) LP:WaitForChild("Backpack").ChildAdded:Connect(function(o) if o:IsA("Tool") then reg(o) end end) task.wait(1) local messages = { "AintMyCrib", "IsdaBest!?", "ANTITOOLKILL!!!!!!!!!", "HAS BEEN EXECUTED!?" } local TextChatService = game:GetService("TextChatService") for _,msg in ipairs(messages) do TextChatService.TextChannels.RBXGeneral:SendAsync(msg) task.wait(0.1) end