thistool = Instance.new("Tool",owner.Backpack) thistool.RequiresHandle = false thistool.Name = "delete" event = Instance.new("RemoteEvent",thistool) event.Name = "destroy" NLS([[ function target() local mouse = game.Players.LocalPlayer:GetMouse() local obj = mouse.Target end thistool.Activated:Connect(target) ]],thistool) tool = thistool function destroy(player,target) target:Destroy() end tool.delete.OnServerEvent:Connect(destroy)